]> git.tdb.fi Git - libs/net.git/blobdiff - source/server.h
Use maputils.h
[libs/net.git] / source / server.h
index 93c1f593561f5d1d335c6067867fd78abddd145c..41894db99d6141dc89c901c354d06b4f25ca25b3 100644 (file)
@@ -1,16 +1,9 @@
-/* $Id$
-
-This file is part of libmsphttp
-Copyright © 2008  Mikkosoft Productions, Mikko Rasa
-Distributed under the LGPL
-*/
-
 #ifndef MSP_HTTP_SERVER_H_
 #define MSP_HTTP_SERVER_H_
 
 #include <msp/core/refptr.h>
 #include <msp/io/eventdispatcher.h>
-#include <msp/net/streamlistensocket.h>
+#include <msp/net/streamserversocket.h>
 
 namespace Msp {
 namespace Http {
@@ -37,7 +30,7 @@ private:
                ~Client();
        };
 
-       Net::StreamListenSocket sock;
+       Net::StreamServerSocket sock;
        std::list<Client> clients;
        IO::EventDispatcher *event_disp;