blob: 5fb9dcdd23fd79323cb39fed6e0eaebb5b0217d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* $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() {
}
|