[DllImport("Ws2_32.dll")]
public static extern int setsockopt(IntPtr s, SocketOptionLevel level, SocketOptionName optname, ref int optval, int optlen);
Declare Function setsockopt Lib "ws2_32.dll" (TODO) As TODO
None.
Do you know one? Please contribute it!
None.
Please add some!
public int ReceiveTimeout
{
get
{
int optval, optlen = 4;
Native.getsockopt(socketPtr, Native.SocketOptionLevel.Socket, Native.SocketOptionName.ReceiveTimeout, out optval, ref optlen);
return optval;
}
set
{
int optval = value, optlen = 4;
Native.setsockopt(socketPtr, Native.SocketOptionLevel.Socket, Native.SocketOptionName.ReceiveTimeout, ref optval, optlen);
}
}