You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//
|
|
// NetworkRequest.h
|
|
//
|
|
// Created by duzixi.com on 15/8/25.
|
|
//
|
|
#include <boost/asio.hpp>
|
|
|
|
using namespace std;
|
|
|
|
/// GETÇëÇó
|
|
string GetRequest(char* host, char* path);
|
|
string GetRequest(string url);
|
|
|
|
/// POSTÇëÇó
|
|
string PostRequest(char* host, char* path, string form); |