.reference

git-svn-id: svn://ultimatepp.org/upp/trunk@6666 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-12-17 15:17:22 +00:00
parent e0d9dcaca7
commit d4b662b4af
5 changed files with 32 additions and 2 deletions

View file

@ -23,7 +23,7 @@ void Server()
<< "<b>URI:</b> " << http.GetURI() << "<br>";
for(int i = 0; i < http.fields.GetCount(); i++)
html << "<b>" << http.fields.GetKey(i) << ":</b> " << http.fields[i] << "<br>";
int len = http.GetContentLength();
int len = (int)http.GetContentLength();
if(len > 0)
socket.GetAll(len);
html << "<b><i>Current time:</i></b> " << GetSysTime() << "</html>";