Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tagProxySettings Struct Reference

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

#include <network_connection_handler_interface.h>

Public Member Functions

 tagProxySettings ()
 

Data Fields

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 16 of file network_connection_handler_interface.h.

Constructor & Destructor Documentation

◆ tagProxySettings()

tagProxySettings::tagProxySettings ( )
inline

Definition at line 20 of file network_connection_handler_interface.h.

21 {
22 proxy = nullptr;
23 auto_detect = false;
24 }
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.

Field Documentation

◆ auto_detect

bool tagProxySettings::auto_detect

TRUE indicates automatic detection.

Definition at line 19 of file network_connection_handler_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 18 of file network_connection_handler_interface.h.

Referenced by tagProxySettings().