]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/httpd.hxx
Updated adf property names.
[flightgear.git] / src / Network / httpd.hxx
index 56bdbedef7d1491b802ecda98374a09b8627fa57..1acb1dfff21f31ac1a37e1044598ea8db5479951 100644 (file)
@@ -5,6 +5,9 @@
 //
 // Copyright (C) 2001  Curtis L. Olson - curt@flightgear.org
 //
+// Jpeg Image Support added August 2001
+//  by Norman Vine - nhv@cape.com
+//
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
 // published by the Free Software Foundation; either version 2 of the
@@ -42,6 +45,9 @@ class HttpdChannel : public netChat
 
     netBuffer buffer ;
 
+    string urlEncode(string);
+    string urlDecode(string);
+
 public:
 
     HttpdChannel() : buffer(512) { setTerminator("\r\n"); }
@@ -71,11 +77,11 @@ class HttpdServer : private netChannel
 public:
 
     HttpdServer ( int port ) {
-        open () ;
-        bind ("", port) ;
-        listen (5) ;
+        open() ;
+        bind( "", port );
+        listen( 5 );
 
-        printf ( "Httpd server started on port %d\n", port ) ;
+        printf( "Httpd server started on port %d\n", port ) ;
     }
 };
 
@@ -84,7 +90,7 @@ class FGHttpd : public FGProtocol {
 
     int port;
     HttpdServer *server;
-
+    
 public:
 
     inline FGHttpd( int p ) { port = p; }