vdr-plugin-streamdev/server/componentVTP.c

19 lines
407 B
C
Raw Normal View History

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