summaryrefslogtreecommitdiff
path: root/server/componentHTTP.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/componentHTTP.c')
-rw-r--r--server/componentHTTP.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/server/componentHTTP.c b/server/componentHTTP.c
new file mode 100644
index 0000000..70e95e9
--- /dev/null
+++ b/server/componentHTTP.c
@@ -0,0 +1,18 @@
+/*
+ * $Id: componentHTTP.c,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
+ */
+
+#include "server/componentHTTP.h"
+#include "server/connectionHTTP.h"
+#include "server/setup.h"
+
+cComponentHTTP::cComponentHTTP(void):
+ cServerComponent("HTTP", StreamdevServerSetup.HTTPBindIP,
+ StreamdevServerSetup.HTTPServerPort)
+{
+}
+
+cServerConnection *cComponentHTTP::NewClient(void)
+{
+ return new cConnectionHTTP;
+}