summaryrefslogtreecommitdiffhomepage
path: root/NetEx/HttpServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'NetEx/HttpServer.h')
-rw-r--r--NetEx/HttpServer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NetEx/HttpServer.h b/NetEx/HttpServer.h
index 8bac7ab..2bba488 100644
--- a/NetEx/HttpServer.h
+++ b/NetEx/HttpServer.h
@@ -14,7 +14,7 @@
#ifndef HttpServer_h
#define HttpServer_h
-#include <windows.h>
+#include <stdint.h>
#include "HttpRequest.h"
#include "HttpResponse.h"
@@ -28,7 +28,7 @@ class HttpServer : public NetServer
public:
static const char* TYPENAME() { return "HttpServer"; }
- HttpServer(WORD port, int poolsize=1);
+ HttpServer(uint16_t port, int poolsize=1);
virtual ~HttpServer();
int operator == (const HttpServer& l) const { return addr == l.addr; }