일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- docker-compose
- Spring
- MySQL server on 'db' (115)
- docker
- 코딩테스트
- 2차 코딩테스트
- github skyline
- TypeError: 'property' object is not iterable
- python all testcode
- METACLASS
- springboot 3.0.0
- EC2
- 프로그래머스
- classmethod
- AWS
- Django
- depends
- S3
- python
- javascript
- DB
- 우아한 테크코스 2차 합격
- classproperty
- 우아한테크코스 2차
- 재귀함수가 뭔가요
- 갓재석
- OperationalError
- AWS S3
- depends_on
- github
Archives
목록연결 지향 프로토콜 (1)
hanbin.dev
[Network] TCP 3 Way Handshake란?
TCP는 UDP와 달리 정확하게 데이터가 전달되어야 하는 통신이다. 그렇기 때문에 클라이언트와 서버간의 확인 절차가 존재하는데, 그 방법 중에 3 Way Handshake가 있다. 동작 방식 SYN = Synchronize sequence number(요청), ACK = Acknowledgement(수락) 1. Client -> Server - Client가 Server로 연결 요청 메세지 SYN(1044)를 보낸다. 2. Server -> Client - Server가 Client로 클라이언트의 요청을 수락 ACK(1044 + 1)한다. -> Server는 연결이 확립된다. (Established) - Server가 Client로 연결 요청 SYN(4812)를 보낸다. 3. Client -> Serve..
Network
2021. 4. 2. 10:26