mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
78410ea576
Modified Files: CONTRIBUTORS HISTORY Makefile README po/de_DE.po po/fi_FI.po po/fr_FR.po po/it_IT.po po/ru_RU.po server/component.c server/component.h server/connection.c server/connection.h server/livefilter.c server/server.c server/setup.c server/setup.h server/streamer.c server/streamer.h streamdev/streamdevhosts.conf tools/socket.c tools/socket.h Added Files: patches/vdr-cap_net_raw.diff server/componentIGMP.c server/componentIGMP.h server/connectionIGMP.c server/connectionIGMP.h
46 lines
907 B
C++
46 lines
907 B
C++
/*
|
|
* $Id: setup.h,v 1.2 2009/02/13 10:39:22 schmirl Exp $
|
|
*/
|
|
|
|
#ifndef VDR_STREAMDEV_SETUPSERVER_H
|
|
#define VDR_STREAMDEV_SETUPSERVER_H
|
|
|
|
#include "common.h"
|
|
|
|
struct cStreamdevServerSetup {
|
|
cStreamdevServerSetup(void);
|
|
|
|
bool SetupParse(const char *Name, const char *Value);
|
|
|
|
int MaxClients;
|
|
int StartVTPServer;
|
|
int VTPServerPort;
|
|
char VTPBindIP[20];
|
|
int StartHTTPServer;
|
|
int HTTPServerPort;
|
|
int HTTPStreamType;
|
|
char HTTPBindIP[20];
|
|
int StartIGMPServer;
|
|
int IGMPClientPort;
|
|
int IGMPStreamType;
|
|
char IGMPBindIP[20];
|
|
int SuspendMode;
|
|
int AllowSuspend;
|
|
};
|
|
|
|
extern cStreamdevServerSetup StreamdevServerSetup;
|
|
|
|
class cStreamdevServerMenuSetupPage: public cStreamdevMenuSetupPage {
|
|
private:
|
|
cStreamdevServerSetup m_NewSetup;
|
|
|
|
protected:
|
|
virtual void Store(void);
|
|
|
|
public:
|
|
cStreamdevServerMenuSetupPage(void);
|
|
virtual ~cStreamdevServerMenuSetupPage();
|
|
};
|
|
|
|
#endif // VDR_STREAMDEV_SETUPSERVER_H
|