diff options
Diffstat (limited to 'server/componentHTTP.h')
-rw-r--r-- | server/componentHTTP.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/server/componentHTTP.h b/server/componentHTTP.h index 46174d9..29dc087 100644 --- a/server/componentHTTP.h +++ b/server/componentHTTP.h @@ -1,26 +1,18 @@ /* - * $Id: componentHTTP.h,v 1.1 2004/12/30 22:44:19 lordjaxom Exp $ + * $Id: componentHTTP.h,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $ */ #ifndef VDR_STREAMDEV_HTTPSERVER_H #define VDR_STREAMDEV_HTTPSERVER_H #include "server/component.h" -#include "server/connectionHTTP.h" - -#include <tools/socket.h> -#include <tools/select.h> class cComponentHTTP: public cServerComponent { +protected: + virtual cServerConnection *NewClient(void); + public: cComponentHTTP(void); - ~cComponentHTTP(void); - - virtual cServerConnection *NewConnection(void) const; }; -inline cServerConnection *cComponentHTTP::NewConnection(void) const { - return new cConnectionHTTP; -} - #endif // VDR_STREAMDEV_HTTPSERVER_H |