Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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#

Awesome Lists containing this project

README

        

# TCP/IP with C#

TCP 기반의 서버 프로그램은 다음과 같은 순서로 구현됨

```
Socket(): 소켓 생성

Bind(): 소켓 주소 할당

Listen(): 연결 요청 대기상태

Accept(): 연결 허용

Read()/Write(): 데이터 송·수신

Close(): 연결 종료
```

클라이언트의 기본적인 함수 호출 순서

```
socket(): 소켓 생성

connect(): 연결 요청

read()/write(): 데이터 송·수신

close(): 연결 종료
```