Microsoft Internet Security and Acceleration Server 2004 SDK

FwxListenerMaxPendingAccepts Property of IFPCLowLevelSettings[C++]

FPCLowLevelSettings.FwxListenerMaxPendingAccepts [Visual Basic]

[C++]

The FwxListenerMaxPendingAccepts property gets or sets the maximum total number of sockets that are waiting for an incoming connection or for the first block of data on all Web listeners defined in the array.

HRESULT get_FwxListenerMaxPendingAccepts(
  long* plMaxPendingAccepts
);

HRESULT put_FwxListenerMaxPendingAccepts(
  long lMaxPendingAccepts
);

Parameters

plMaxPendingAccepts
Pointer to a variable that on return receives a 32-bit integer specifying the maximum total number of waiting sockets on all Web listeners defined in the array.
lMaxPendingAccepts
A 32-bit integer that specifies the maximum total number of waiting sockets on all Web listeners defined in the array.

Return Values

These property methods return S_OK if the call is successful; otherwise, they return an error code.

Remarks

This property is read/write. Its default value is 15,000. In common scenarios, there is no need to deviate from the default value. This value should be adjusted only for achieving improved performance.

For each Web listener, the Microsoft Firewall service initially creates 50 sockets that wait to accept a new incoming connection and to receive the first block of data. As each of these sockets completes its tasks of accepting a new incoming connection and receiving the first block of data, a new waiting socket is created for the Web listener.

Some of the waiting sockets can be in a state in which they have accepted an incoming connection, but have not received the first block of data. The Firewall service monitors the number of sockets in this state for each Web listener and maintains the percentage of waiting sockets that are in this state between the minimum percentage specified by the FwxListenerMinPercent property and the maximum percentage specified by the FwxListenerMaxPercent property. When the percentage drops to the minimum value, the Firewall service stops creating new waiting sockets for the Web listener until the number of waiting sockets decreases by the current number multiplied by the percentage specified in the FwxListenerToKillPercent property. When the percentage reaches the maximum value, the Firewall service creates new waiting sockets for the Web listener. The number of sockets created equals the current number of waiting sockets multiplied by the percentage specified in the FwxListenerToCreatePercent property.

If the total number of waiting sockets on all Web listeners defined in the array exceeds the number specified by the FwxListenerMaxPendingAccepts property, no new sockets are created.

[Visual Basic]

The FwxListenerMaxPendingAccepts property gets or sets the maximum total number of sockets that are waiting for an incoming connection or for the first block of data on all Web listeners defined in the array.

Property FwxListenerMaxPendingAccepts As Long

Property Value

A 32-bit integer that specifies the maximum total number of waiting sockets on all Web listeners defined in the array.

Remarks

This property is read/write. Its default value is 15,000. In common scenarios, there is no need to deviate from the default value. This value should be adjusted only for achieving improved performance.

For each Web listener, the Microsoft Firewall service initially creates 50 sockets that wait to accept a new incoming connection and to receive the first block of data. As each of these sockets completes its tasks of accepting a new incoming connection and receiving the first block of data, a new waiting socket is created for the Web listener.

Some of the waiting sockets can be in a state in which they have accepted an incoming connection, but have not received the first block of data. The Firewall service monitors the number of sockets in this state for each Web listener and maintains the percentage of waiting sockets that are in this state between the minimum percentage specified by the FwxListenerMinPercent property and the maximum percentage specified by the FwxListenerMaxPercent property. When the percentage drops to the minimum value, the Firewall service stops creating new waiting sockets for the Web listener until the number of waiting sockets decreases by the current number multiplied by the percentage specified in the FwxListenerToKillPercent property. When the percentage reaches the maximum value, the Firewall service creates new waiting sockets for the Web listener. The number of sockets created equals the current number of waiting sockets multiplied by the percentage specified in the FwxListenerToCreatePercent property.

If the total number of waiting sockets on all Web listeners defined in the array exceeds the number specified by the FwxListenerMaxPendingAccepts property, no new sockets are created.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPCLowLevelSettings