vdr-plugin-streamdev/server/componentHTTP.c

19 lines
417 B
C
Raw Normal View History

2004-12-30 23:43:55 +01:00
/*
2005-05-09 22:22:29 +02:00
* $Id: componentHTTP.c,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
2004-12-30 23:43:55 +01:00
*/
#include "server/componentHTTP.h"
#include "server/connectionHTTP.h"
#include "server/setup.h"
cComponentHTTP::cComponentHTTP(void):
2005-05-09 22:22:29 +02:00
cServerComponent("HTTP", StreamdevServerSetup.HTTPBindIP,
StreamdevServerSetup.HTTPServerPort)
{
2004-12-30 23:43:55 +01:00
}
2005-05-09 22:22:29 +02:00
cServerConnection *cComponentHTTP::NewClient(void)
{
return new cConnectionHTTP;
2004-12-30 23:43:55 +01:00
}