728x90
반응형
TCP Connection
-
서버와 클라이언트 통신과정 , HTTP 지연이유 , TCP handshake공부일기장 2023. 8. 3. 21:51
SERVER S1. create new socket S2. bind socket to port 80 S3. permit socket connections (listen) S4. wait for connection(accpet) Client C1. get IP address & port C2. ceate new socket C3. connect to server IP:port(connect) SERVER S5. application notified of connection S6. start reading reqeust(read) Client C4. connection successful C5. send HTTP request (write) C6. wait for HTTP response SERVER S7...