Server 와 Client 모델 흐름 정리 Server 1. Listener용 socket 생성(listener) 2. listener에 bind()함수를 이용해 서버의 ip와 port번호 결합(BInd) 3. listener.Listen()을 통해 클라이언트 접속 대기 4. 클라이언트로부터 접속 요청이 오면 listener.Accept()를 통해 통신용 socket 생성 *Accept()는 클라이언트의 연결 요청을 동기적으로 추출한 다음 새 Socket연결을 만들고 반환한다. [ 참조 ] : https://learn.microsoft.com/ko-kr/dotnet/api/system.net.sockets.socket.accept?view=net-7.0 5. 통신용 socket에 Send() 함수와 R..