vdr-plugin-streamdev/server/componentVTP.c

19 lines
407 B
C
Raw Normal View History

2004-12-30 22:43:55 +00:00
/*
2005-05-09 20:22:29 +00:00
* $Id: componentVTP.c,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
2004-12-30 22:43:55 +00:00
*/
#include "server/componentVTP.h"
#include "server/connectionVTP.h"
#include "server/setup.h"
cComponentVTP::cComponentVTP(void):
2005-05-09 20:22:29 +00:00
cServerComponent("VTP", StreamdevServerSetup.VTPBindIP,
StreamdevServerSetup.VTPServerPort)
{
2004-12-30 22:43:55 +00:00
}
2005-05-09 20:22:29 +00:00
cServerConnection *cComponentVTP::NewClient(void)
{
return new cConnectionVTP;
2004-12-30 22:43:55 +00:00
}