Internet Direct (Indy)
Home
PreviousUpNext
TIdSocketListWindows.SelectReadList Method

Populates the list of socket handles ready for reading.

Pascal
function SelectReadList(
    var VSocketList: TIdSocketList; 
    const ATimeout: Integer = IdTimeoutInfinite
): Boolean; override;
Parameters 
Description 
VSocketList 
SOcket list with the readable socket handles.
 
ATimeout 
Timeout value for the Select() API call. 

Boolean - True when the socket list contains a socket handle for reading.

SelectReadList is an overridden Boolean function that implements the method used to populate the socket list in VSocketList with the socket handles ready for reading. 

SelectReadList uses the Select() and fd_set() APIs for a protocol stack implementation to populate the socket handle list. 

SelectReadList returns True when the socket list contains at least one socket handle available for reading. 

SelectReadList converts the set of readable socket descriptors for storage in the TIdSocketList instance. If VSocketList is unassigned, a new TIdSocketListWindows instance is create for the converted values.

Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved.
Website http://www.indyproject.org.
Post feedback to the Indy Documentation newsgroup.