ioctlsocket function winsock

int ioctlsocket(
  1. int s,
  2. int cmd,
  3. Pointer<Uint32> argp
)

The ioctlsocket function controls the I/O mode of a socket.

int ioctlsocket(
  SOCKET s,
  long   cmd,
  u_long *argp
);

Implementation

int ioctlsocket(int s, int cmd, Pointer<Uint32> argp) =>
    _ioctlsocket(s, cmd, argp);