Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
INetworkConnectionHandler Class Referenceabstract

The network connection handler callback event. More...

#include <network_connection_handler_interface.h>

Public Member Functions

virtual void onProxyDetectComplete ()=0
 Notification callback of completing the proxy detection.
 
virtual void onProxySettingNotification (IProxySettingHandler *handler)=0
 The callback will be triggered if the proxy requests to input the username and password.
 
virtual void onSSLCertVerifyNotification (ISSLCertVerificationHandler *handler)=0
 The callback will be triggered when the SSL is verified.
 

Detailed Description

The network connection handler callback event.

Definition at line 81 of file network_connection_handler_interface.h.

Member Function Documentation

◆ onProxyDetectComplete()

virtual void INetworkConnectionHandler::onProxyDetectComplete ( )
pure virtual

Notification callback of completing the proxy detection.

◆ onProxySettingNotification()

virtual void INetworkConnectionHandler::onProxySettingNotification ( IProxySettingHandler * handler)
pure virtual

The callback will be triggered if the proxy requests to input the username and password.

Remarks
Use the handler to configure the related information. For more details, see IProxySettingHandler. The handler will be destroyed once the function calls end.

◆ onSSLCertVerifyNotification()

virtual void INetworkConnectionHandler::onSSLCertVerifyNotification ( ISSLCertVerificationHandler * handler)
pure virtual

The callback will be triggered when the SSL is verified.

Remarks
Use the handler to check the related information. For more details, see ISSLCertVerificationHandler. The handler will be destroyed once the function calls end.