mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
*Core: HTTP request clears 'body' at start of new request
git-svn-id: svn://ultimatepp.org/upp/trunk@5018 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
ca235305a3
commit
ac00befdcb
1 changed files with 2 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ bool HttpRequest_Trace__;
|
|||
|
||||
#ifdef _DEBUG
|
||||
_DBG_
|
||||
// #define ENDZIP
|
||||
// #define ENDZIP // only activate if zip pipe is in the question
|
||||
#endif
|
||||
|
||||
void HttpRequest::Trace(bool b)
|
||||
|
|
@ -356,6 +356,7 @@ void HttpRequest::Start()
|
|||
header.Clear();
|
||||
status_code = 0;
|
||||
reason_phrase.Clear();
|
||||
body.Clear();
|
||||
WhenStart();
|
||||
|
||||
bool use_proxy = !IsNull(ssl ? ssl_proxy_host : proxy_host);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue