D
dean.greg
What is the difference between the two method of creating a socket?
new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.IP);
It is my understanding that the third parameter in this scenario has
no effect, because...
AddressFamily.InterNetwork = IPv4
SocketType.Stream = TCP
Or am I mistaken?
new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
new Socket(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.IP);
It is my understanding that the third parameter in this scenario has
no effect, because...
AddressFamily.InterNetwork = IPv4
SocketType.Stream = TCP
Or am I mistaken?