Video SDK for Linux API Reference
Loading...
Searching...
No Matches
tagProxySettings Struct Reference

The proxy that the user want to use according to the net environment. Here are more detailed structural descriptions. More...

#include <zoom_video_sdk_network_connection_helper_interface.h>

Public Member Functions

 tagProxySettings ()
 

Public Attributes

const zchar_tproxy
 The proxy ip address and port that user want to use, should be organized like ip:port, such as '255.255.255.255:8080'. Use ';' to separate multi proxies.
 
bool auto_detect
 True indicates automatic detection.
 

Detailed Description

The proxy that the user want to use according to the net environment. Here are more detailed structural descriptions.

Definition at line 17 of file zoom_video_sdk_network_connection_helper_interface.h.

Constructor & Destructor Documentation

◆ tagProxySettings()

tagProxySettings::tagProxySettings ( )
inline

Definition at line 21 of file zoom_video_sdk_network_connection_helper_interface.h.

22 {
23 proxy = nullptr;
24 auto_detect = false;
25 }
bool auto_detect
True indicates automatic detection.
const zchar_t * proxy
The proxy ip address and port that user want to use, should be organized like ip:port,...

References auto_detect, and proxy.

Member Data Documentation

◆ auto_detect

bool tagProxySettings::auto_detect

True indicates automatic detection.

Definition at line 20 of file zoom_video_sdk_network_connection_helper_interface.h.

Referenced by tagProxySettings().

◆ proxy

const zchar_t* tagProxySettings::proxy

The proxy ip address and port that user want to use, should be organized like ip:port, such as '255.255.255.255:8080'. Use ';' to separate multi proxies.

Definition at line 19 of file zoom_video_sdk_network_connection_helper_interface.h.

Referenced by tagProxySettings().