C # Seqpacket
I have done some research and there is very little (mostly no) information on how to create a socket of type SeqPacket in C # this will fail:
listenerSocket = new Socket (AddressFamily.InterNetwork, SocketType.Seqpacket, ProtocolType.Tcp);
I'm new to networking, so I'm probably doing something really stupid.
+1
a source to share
2 answers
SocketType.Seqpacket is only supported on NetBIOS. There is no reason to use this with TCP connections.
See the MSDN thread for details .
+2
a source to share