diff options
author | lordjaxom <lordjaxom> | 2005-05-09 20:22:29 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-05-09 20:22:29 +0000 |
commit | 450c8fd4a7ec7eb878abfce0e4a499e03762b4f8 (patch) | |
tree | cedc263aad1297fdb64a813ff83e424ee4023925 /server/componentHTTP.h | |
parent | 3eec47314d70d513b494750312a877f29d070eb8 (diff) | |
download | vdr-plugin-streamdev-450c8fd4a7ec7eb878abfce0e4a499e03762b4f8.tar.gz vdr-plugin-streamdev-450c8fd4a7ec7eb878abfce0e4a499e03762b4f8.tar.bz2 |
- added TS compatibility mode
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 |