The IPBOOTP_GLOBAL_CONFIG structure is used to set or retrieve global configuration for the IPBOOTP. This is used in the following methods:
RRouterInterfaceTransportGetGlobalInfo (section 3.1.4.11)
typedef struct _IPBOOTP_GLOBAL_CONFIG {
DWORD GC_LoggingLevel;
DWORD GC_MaxRecvQueueSize;
DWORD GC_ServerCount;
} IPBOOTP_GLOBAL_CONFIG,
*PIPBOOTP_GLOBAL_CONFIG;
GC_LoggingLevel: Specifies the logging level. It MUST be one of the following values.
|
Value |
Meaning |
|---|---|
|
IPBOOTP_GLOBAL_CONFIG 0x00000000 |
No Logging is done. |
|
IPBOOTP_LOGGING_ERROR 0x00000001 |
Only errors are logged. |
|
IPBOOTP_LOGGING_WARN 0x00000002 |
Errors and warnings are logged. |
|
IPBOOTP_LOGGING_INFO 0x00000003 |
Errors, warnings, and information are logged. |
GC_MaxRecvQueueSize: Specifies the maximum size in bytes of messages in the receive queue while processing.
GC_ServerCount: The number of BOOTP server IP addresses.