accept (ws2_32)
Last changed: -77.124.220.248

.
Summary
The accept function permits an incoming connection attempt on a socket.

C# Signature:

[DllImport("ws2_32.dll", CharSet=CharSet.Auto, SetLastError=true)]

public static extern IntPtr accept(

          IntPtr socketHandle,
          ref sockaddr socketAddress,
          ref int addressLength);

VB Signature:

Declare Function accept Lib "ws2_32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation