__WSAFDIsSet (Windows CE 5.0)

Send Feedback

This function specifies whether a socket is included in a set of socket descriptors.

int __WSAFDIsSet(
  SOCKET fd,
  fd_set* set
);

Parameters

  • fd
    Descriptor identifying a socket.
  • set
    Pointer to an fd_set structure containing the set of socket descriptors. The __WSAFDIsSet function determines whether the socket specified in the fd parameter is a member of that set.

Return Values

Returns a nonzero integer if the socket is a member of the group specified in the set parameter. Returns zero if the socket is not a member of the group specified in the set parameter.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Winsock2.h.
Link Library: Ws2.lib.

See Also

fd_set | select | WSAEventSelect

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.