TIMEOUT_INFO Structure
The TIMEOUT_INFO data structure contains time-out settings for connecting to and retrieving data from content.
typedef struct _TIMEOUT_INFO{
DWORD dwSize;
DWORD dwConnectTimeout;
DWORD dwDataTimeout;
} TIMEOUT_INFO;
Members
The following table describes members of the TIMEOUT_INFO data structure.
Name | Description |
---|---|
dwSize |
A DWORD representing the actual size of the structure. |
dwConnectTimeout |
A DWORD representing the time-out for connection (seconds). |
dwDataTimeout |
A DWORD representing the time-out for data (seconds). |
Remarks
The default for the time-out settings is 20 seconds. If this time has elapsed, the process from the Filter Daemon is terminated to prevent deadlock and other resource problems.