Add header for http_response

namespace
mbandic 1 year ago
parent 3a7b5bd688
commit 32c80d7bb6
  1. 30
      test/test.cpp
  2. BIN
      test/test.o

@ -6,19 +6,19 @@ using namespace std;
int main() { int main() {
defapi myApi({"GET"}, {"add", "delete", "update"}, {"id", "key", "value"}); // defapi myApi({"GET"}, {"add", "delete", "update"}, {"id", "key", "value"});
myApi.necessary("add", {"id", "key", "value"}); // myApi.necessary("add", {"id", "key", "value"});
myApi.necessary("delete", {"id"}); // myApi.necessary("delete", {"id"});
myApi.necessary("update", {"id"}); // myApi.necessary("update", {"id"});
myApi.necessary("update", {"value"}); // myApi.necessary("update", {"value"});
try { // try {
api uf(&myApi, "GET", "delete", {make_pair("id", "4")}, "bay"); // api uf(&myApi, "GET", "delete", {make_pair("id", "4")}, "bay");
} catch (string err) { // } catch (string err) {
cout << err << endl; // cout << err << endl;
} // }
// http myHttp(&myApi, "GET /fghfhf HTTP/1.1\r\nBaba"); // http myHttp(&myApi, "GET /fghfhf HTTP/1.1\r\nBaba");
// //http myHttp(&myApi, "GET /hello/?id=4&post=99 HTTP/1.1\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE5.01; Windows NT)\r\nHost: www.tutorialspoint.com\r\nAccept-Language: en-us\r\nAccept-Encoding: gzip, deflate\r\nConnection: Keep-Alive\r\n\r\nHELLO WORLD\r\n"); // //http myHttp(&myApi, "GET /hello/?id=4&post=99 HTTP/1.1\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE5.01; Windows NT)\r\nHost: www.tutorialspoint.com\r\nAccept-Language: en-us\r\nAccept-Encoding: gzip, deflate\r\nConnection: Keep-Alive\r\n\r\nHELLO WORLD\r\n");
@ -35,19 +35,23 @@ int main() {
// http_request myres(&uf); // http_request myres(&uf);
// myres.putheader("Content-type", "text/plain"); // myres.putheader("Content-type", "text/plain");
http_request myres("GET /delete?id=4 HTTP/1.1\r\nContent-type: text/plain\r\n\n\rBAY"); http_response myres; myres.get("HTTP/1.1 200 OK\r\nContent-type: text/plain\r\nContent-length: 3\r\n\r\nBAY");
// myres.get("HTTP/1.1 200 OK\r\n\r\nnotauth"); // myres.get("HTTP/1.1 200 OK\r\n\r\nnotauth");
// myres.get("HTTP/1.1 200 OK"); // myres.get("HTTP/1.1 200 OK");
// myres.header("Content-type", "text/plain");
// api uf(&myApi, myres); // api uf(&myApi, myres);
// cout << uf.method << " " << uf.path << " " << uf.body << endl;// << myres.raw; // cout << uf.method << " " << uf.path << " " << uf.body << endl;// << myres.raw;
// cout << myres.method << " " << myres.url << " " << myres.body << endl;// << myres.raw; cout << myres.status << myres.body << endl;// << myres.raw;
// for(auto i : uf.params) // for(auto i : uf.params)
// cout << i.first << " " << i.second << endl; // cout << i.first << " " << i.second << endl;
for (auto i: myres.headers) {
cout << i.first << ": " << i.second << endl;
}
} }

Binary file not shown.
Loading…
Cancel
Save