diff options
Diffstat (limited to 'server/componentHTTP.c')
-rw-r--r-- | server/componentHTTP.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/componentHTTP.c b/server/componentHTTP.c new file mode 100644 index 0000000..035cb01 --- /dev/null +++ b/server/componentHTTP.c @@ -0,0 +1,15 @@ +/* + * $Id: componentHTTP.c,v 1.1 2004/12/30 22:44:19 lordjaxom Exp $ + */ + +#include "server/componentHTTP.h" +#include "server/connectionHTTP.h" +#include "server/setup.h" + +cComponentHTTP::cComponentHTTP(void): + cServerComponent("HTTP", StreamdevServerSetup.HTTPBindIP, + StreamdevServerSetup.HTTPServerPort) { +} + +cComponentHTTP::~cComponentHTTP() { +} |