TCP and UDP same ports, different process

port, sockets, tcp, udp

Solution

TCP ports and UDP ports are not related to each other at all.

Problem

I know you can't have two different process using the same port, but what happens if one is using tcp and the other one udp? Can you have two different process each one binding a socket to the same port but different protocol?

Original source