------------ 클라이언트 ----------- // client.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.//#include "stdafx.h"#include "client.h"#include "stdio.h"#include "winsock2.h"#pragma comment(lib, "ws2_32.lib")#define DESIRED_WINSOCK_VERSION 0x0202#define MINIMUM_WINSOCK_VERSION 0x0001#define MAXBUF 256#ifdef _DEBUG#define new DEBUG_NEW#endif// 유일한 응용 프로그램 개체입니다.CWinApp theApp;using namespace std;int _tma..