Meeting 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 <network_connection_handler_interface.h>

Public Member Functions

 tagProxySettings ()
 

Data Fields

const zchar_tproxy
 
bool auto_detect
 

Detailed Description

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

Definition at line 15 of file network_connection_handler_interface.h.

Constructor & Destructor Documentation

◆ tagProxySettings()

tagProxySettings::tagProxySettings ( )
inline

Definition at line 21 of file network_connection_handler_interface.h.

22 {
23 proxy = nullptr;
24 auto_detect = false;
25 }

References auto_detect, and proxy.

Field Documentation

◆ auto_detect

bool tagProxySettings::auto_detect

TRUE indicates automatic detection.

Definition at line 20 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().