logo

English

이곳의 프로그래밍관련 정보와 소스는 마음대로 활용하셔도 좋습니다. 다만 쓰시기 전에 통보 정도는 해주시는 것이 예의 일것 같습니다. 질문이나 오류 수정은 siseong@gmail.com 으로 주세요. 감사합니다.

TCP/IP State Transition - TCP 스택 포팅 시 참조

by digipine posted Nov 02, 2017
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print Attachment
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print Attachment

일반적인 경우 아래 내용은 모두 Sokcet 내에서 처리되기 때문에 필요없지만

TCP 스택을 포팅하거나 수정해야할 경우에는 중요하게 처리해야될  TCP State 값의 설명입니다.

 

TCP/IP State Transition Diagram (RFC793)


A connection progresses through a series of states during its lifetime. The states are: LISTEN, SYN-SENT, SYNRECEIVED, ESTABLISHED, FIN-WAIT-1, FIN-WAIT-2, CLOSE-WAIT, CLOSING, LAST-ACK, TIME-WAIT, and the fictional state CLOSED. CLOSED is fictional because it represents the state when there is no TCB, and therefore, no connection. Briefly the meanings of the states are:

 

LISTEN

represents waiting for a connection request from any remote TCP and port.

 

SYN-SENT

represents waiting for a matching connection request after having sent a connection request.

 

SYN-RECEIVED

represents waiting for a confirming connection request acknowledgment after having both received and sent a connection request.

 

ESTABLISHED

represents an open connection, data received can be delivered to the user. The normal state for the data transfer phase of the connection.


FIN-WAIT-1

represents waiting for a connection termination request from the remote TCP, or an acknowledgment of the connection termination request previously sent.

 

FIN-WAIT-2

represents waiting for a connection termination request from the remote TCP.

 

CLOSE-WAIT

represents waiting for a connection termination request from the local user.

 

CLOSING

represents waiting for a connection termination request acknowledgment from the remote TCP.

 

LAST-ACK

represents waiting for an acknowledgment of the connection termination request previously sent to the remote TCP (which includes an acknowledgment of its connection termination request).


TIME-WAIT

represents waiting for enough time to pass to be sure the remote TCP received the acknowledgment of its connection termination request.


CLOSED

represents no connection state at all.

 

 

A TCP connection progresses from one state to another in response to events. The events are the user calls, OPEN, SEND, RECEIVE, CLOSE, ABORT, and STATUS; the incoming segments, particularly those containing the SYN, ACK, RST and FIN flags; and timeouts.

 
18e2bb3ea671dc6796b1dcf7b351de9c.PNG

 

TAG •

List of Articles
No. Subject Author Date Views
104 ALM의 등장 배경, 오해와 진실 digipine 2017.10.28 377
103 ATmega8 MCU 간의 TWI 기능을 이용한 I2C 통신 digipine 2017.11.02 5998
102 AWS EC2 Ubuntu 용 Docker 설치 스크립트 digipine 2021.09.01 348
101 Bitbucket에서 SSH 키 등록하고 사용하는 방법 (맥/리눅스) file lizard2019 2023.06.22 956
100 C/C++ struct 패딩(padding) 원리 이해 lizard2019 2019.03.04 2150
99 Certbot으로 무료 인증서 발급 받기 digipine 2020.09.03 529
98 CMM / CMMI 란 무엇인가? digipine 2017.10.28 2467
97 Compile FFmpeg on Ubuntu, Debian, or Mint digipine 2017.11.02 327
96 Docker Compute Engine Ubuntu에서 Docker 설치 방법 lizard2019 2021.04.15 463
95 Docker 모든 컨테이너를 Stop 또는 Remove 하는 방법 digipine 2021.09.01 202
94 Docker에서 Phabricator 최신버전 설치 및 버전 확인 방법 file lizard2019 2021.04.15 1403
93 FFServer RTSP Audio Server Config digipine 2023.05.12 240
92 FFT (Fast Fourier Transform) 고속 푸리에 변환 예제 소스 digipine 2017.10.29 12549
91 gcc thread and mutex 사용법 lizard2019 2019.02.27 1200
90 Git Commit 취소 관련 명령어 정리 1 digipine 2017.11.02 1327
89 Git Commnd 사용법 정리 digipine 2017.11.02 264
88 Git Http Backend Upload Size 설정 - Http 500 Error 해결 digipine 2017.11.02 2074
87 Git 서버 구축 - 우분투[Ubuntu] digipine 2017.11.02 307
86 git 환경 설정 및 명령어 정리 digipine 2017.11.03 425
85 Golang Channel 사용법 정리 digipine 2021.10.22 414
Board Pagination Prev 1 2 3 4 5 6 Next
/ 6