Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hhejo/tcp-ip-csharp
Implementing TCP/IP Servers Using C#
https://github.com/hhejo/tcp-ip-csharp
Last synced: about 1 month ago
JSON representation
Implementing TCP/IP Servers Using C#
- Host: GitHub
- URL: https://github.com/hhejo/tcp-ip-csharp
- Owner: hhejo
- Created: 2024-11-01T00:33:25.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-11-01T02:30:55.000Z (3 months ago)
- Last Synced: 2024-11-01T03:22:36.683Z (3 months ago)
- Language: C#
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TCP/IP with C#
TCP 기반의 서버 프로그램은 다음과 같은 순서로 구현됨
```
Socket(): 소켓 생성Bind(): 소켓 주소 할당
Listen(): 연결 요청 대기상태
Accept(): 연결 허용
Read()/Write(): 데이터 송·수신
Close(): 연결 종료
```클라이언트의 기본적인 함수 호출 순서
```
socket(): 소켓 생성connect(): 연결 요청
read()/write(): 데이터 송·수신
close(): 연결 종료
```