PR1 Echo Server & Client (using pthread) /* Echo Server */ #include #include #include #include #include #include #include #include #include #defineBUFSIZE1024 #define MAXCLIENT10 /* accept()한 클라이언트를 처리할 쓰레드 함수 */ void* clientHandler(void* arg); /* main() 시작 */ int main(int argc, char* argv[]) { /* 서버와 클라이언트의 소켓을 할당할 변수 */ int serv_sock; int clnt_sock; /* 서버와 클라이언트의 주소정보를 할당할 변수 */ struct sockaddr_in serv_addr; struct sockaddr_in clnt_a.. 2008. 3. 25. 이전 1 다음