multiplexing

[CS][컴퓨터 네트워킹 하향식 접근] Chapter3.2 멀티플렉싱, 디멀티플렉싱 (Multiplexing, Demultiplexing)
Multiplexing과 Demultiplexing sender에서 multipelxing을 하고, receiver에서 demultiplexing을 한다고 이야기 한다. Connectionless demultiplexing의 과정 UDP에 관한 이야기이다. socket을 만들 때 host의 local port 설정 필요하다. UDP soket으로 보내기 위한 datagram을 만들 때 필요한 것 destination IP address destination Port number(#) receiving host가 UDP segment를 받으면 destination port # 를 체크하고, 그 port#를 가지고 있는 socket으로 보낸다. 같은 dest, port#을 가졌지만 다른 source IP 주..