First of all, is there any problem with using both UDP and TCP on the same server?
Secondly, can I use the same port number?
|
First of all, is there any problem with using both UDP and TCP on the same server? Secondly, can I use the same port number? |
||||
|
|
|
Yes, you can use the same port number for both TCP and UDP. Many protocols already do this, for example DNS works on udp/53 and tcp/53. When writing your server, bear in mind that the sequence of events for a TCP socket is much harder than for a UDP socket, since as well as the normal Furthermore that |
|||||||||||||||
|