반응형

IT/소스코드 24

[C/linux] Z-Chat (TCP/IP Chat Program)

[info.] 2004 여름 / 네트워크 프로그래밍(경북대) / 고석주 교수님 using : C / Linux / TCP/IP / Multi-threads / thread-synchronization(mutex) [Makefile] all : zchat_serv zchat_clnt zchat_serv : zchat_serv.c zchat.h gcc -o zchat_serv zchat_serv.c -D_REENTRANT -lpthread zchat_clnt : zchat_clnt.c zchat.h gcc -o zchat_clnt zchat_clnt.c -D_REENTRANT -lpthread [zchat.h] /** Z-Chat Header File zzun hello82@unitel.co.kr http:..

IT/소스코드 2004.07.12

[C/linux] TCP/IP 가위바위보 게임 (Concurrent Server Version)

[info.] 2004 Summer / 네트워크 프로그래밍(경북대) / 고석주 교수님 [rspgame_serv.c] /** RSP game SERVER zzun hello82@unitel.co.kr http://zzun.net **/ #include #include #include #include #include #include #define BUFSIZE 5 void err_handler( char* msg ) { fputs( msg, stderr ); exit(1); } void z_handler( int sig ) // zombie child process handler { int rtn; waitpid( -1, &rtn, WNOHANG ); } int who_win( int a, int b ) /..

IT/소스코드 2004.07.07
반응형