mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-21 23:54:14 +00:00
Content-Type for POST
This commit is contained in:
parent
d7637bc0cd
commit
124007dc31
@ -63,9 +63,12 @@ namespace proxy
|
||||
request r;
|
||||
ExtractRequest(r);
|
||||
parseHeaders(m_Buffer, r.headers);
|
||||
const char * data = strstr (m_Buffer, "\r\n\r\n");
|
||||
if (data) data += 4;
|
||||
|
||||
const char * data = nullptr;
|
||||
if (r.method == "POST")
|
||||
{
|
||||
data = strstr (m_Buffer, "\r\n\r\n");
|
||||
if (data) data += 4;
|
||||
}
|
||||
LogPrint("Requesting ", r.host, " with path ", r.uri, " and method ", r.method);
|
||||
HandleDestinationRequest(r.host, r.method, data ? std::string (data) : "" , r.uri);
|
||||
}
|
||||
|
@ -760,15 +760,15 @@ namespace util
|
||||
m_Stream = i2p::stream::CreateStream (*leaseSet);
|
||||
if (m_Stream)
|
||||
{
|
||||
std::string request = method+" " + uri + " HTTP/1.1\n Host:" + fullAddress + "\r\n";
|
||||
if (!strcmp(method.c_str(), "GET") && data.size () > 0)
|
||||
{
|
||||
// POST/PUT, apply body
|
||||
request += "Content-Length: " ;
|
||||
request += data.size ();
|
||||
request += "\r\n\r\n" + data;
|
||||
}
|
||||
LogPrint("HTTP Client Request: ", request);
|
||||
std::string request = method + " " + uri + " HTTP/1.1\r\nHost:" + fullAddress + "\r\n";
|
||||
if (method == "POST" && data.size () > 0)
|
||||
{
|
||||
// POST/PUT, apply body
|
||||
request += "Content-Type: application/x-www-form-urlencoded\r\n";
|
||||
request += "Content-Length: " + boost::lexical_cast<std::string>(data.size ()) + "\r\n";
|
||||
request += "\r\n" + data;
|
||||
}
|
||||
LogPrint("HTTP Client Request: ", request);
|
||||
m_Stream->Send ((uint8_t *)request.c_str (), request.size (), 10);
|
||||
AsyncStreamReceive ();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user