#include <iostream>
#include "HttpClient.h"
int main()
{
CHttpClient cli("127.0.0.1", 1234);
cli.DownloadAllFile();
getchar();
}