I’ve done some research, and there is very little (basically none) information on how to create a socket of type SeqPacket in C#
doing 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.
I’ve done some research, and there is very little (basically none) information on how
Share
SocketType.Seqpacket is only supported in NetBIOS. There is no reason to use this with TCP connections.
See this MSDN thread for details.