Packet Sniffer SDK VCL Edition

Constants Enumerations :: HNAdapterConfigChange

 Previous Next

HNAdapterConfigChange enumeration contains the constant values corresponding to the network device state changes, which can be controlled by the OnConfigChange event handler.

Syntax:

const acDelete             = $000;  
const acIpChange           = $001;  
const acIpDhcpChange       = $002;  
const acIpGatewayChange    = $004;  
const acIpDnsChange        = $008;  
const acZeroBroadcastState = $010;  
const acDhcpState          = $020;  
const acCreate             = $FFF;

Values:

acDelete

Exclusively used by the PSSDK library. On calling the RefreshAdapterList method it is sent to the OnConfigChange event handler. Do not use this value in the Update method call.

acIpChange

IP protocol settings update.

acIpDhcpChange

DHCP settings update.

acIpGatewayChange

Gateways settings update.

acIpDnsChange

DNS settings update.

acZeroBroadcastState

The status flag of the IP zero broadcast usage update.

acDhcpState

The status flag of the DHCP usage update.

acCreate

Creation of the new configuration. Exclusively used by the PSSDK library. On calling the Initialize and RefreshAdapterList methods it is sent to the OnConfigChange event handler. Do not use this value in the HNAdapterConfig.Update method call.

See also:HNPSManager, OnConfigChange, Initialize, RefreshAdapterList, HNAdapterConfig, Update