X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2Fhttpd.cxx;h=31d4b93375af4724799b0b1184b99a102ed29df1;hb=5f2fff4ec45a0c20bca076d5b09c433370288f4d;hp=9991b90898d41f78a4fdda74c4e13dbf02f5fdcb;hpb=d9bfd5a425df1bad7e3c53a64adce871e299a6b9;p=flightgear.git diff --git a/src/Network/httpd.cxx b/src/Network/httpd.cxx index 9991b9089..31d4b9337 100644 --- a/src/Network/httpd.cxx +++ b/src/Network/httpd.cxx @@ -32,8 +32,8 @@ #include #include // sort() -#include // atoi() atof() - +#include // atoi() atof() +#include #include #include @@ -47,7 +47,7 @@ #include "httpd.hxx" -SG_USING_STD(string); +using std::string; bool FGHttpd::open() { if ( is_enabled() ) { @@ -66,7 +66,7 @@ bool FGHttpd::open() { bool FGHttpd::process() { - netChannel::poll(); + simgear::NetChannel::poll(); return true; } @@ -267,7 +267,7 @@ void HttpdChannel::foundTerminator (void) { SG_LOG( SG_IO, SG_INFO, "size = " << response.length() ); char ctmp[256]; - sprintf(ctmp, "Content-Length: %d", response.length()); + sprintf(ctmp, "Content-Length: %u", (unsigned)response.length()); push( ctmp ); push( getTerminator() );