mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
16 lines
345 B
C
16 lines
345 B
C
|
/*
|
||
|
* $Id: componentVTP.c,v 1.1 2004/12/30 22:44:19 lordjaxom Exp $
|
||
|
*/
|
||
|
|
||
|
#include "server/componentVTP.h"
|
||
|
#include "server/connectionVTP.h"
|
||
|
#include "server/setup.h"
|
||
|
|
||
|
cComponentVTP::cComponentVTP(void):
|
||
|
cServerComponent("VTP", StreamdevServerSetup.VTPBindIP,
|
||
|
StreamdevServerSetup.VTPServerPort) {
|
||
|
}
|
||
|
|
||
|
cComponentVTP::~cComponentVTP() {
|
||
|
}
|