네트워크 프로그래밍 - 멀티 스레드를 이용한 파일 수신 서버 작성
[목차]
1 소스코드 설명
2 실행화면 캡쳐
Server
#pragma comment(lib, ws2_32 )
#include [winsock2.h]
#include [stdlib.h]
#include [stdio.h]
#define SERVERPORT 9000
#define BUFSIZE 512
// 소켓 함수 오류 출력 후 종료 -] 심한 오류
void err_quit(char *msg)
{
LPVOID lpMsgBuf;
FormatMessage( -] 오류 코드를 문자열로 ..