vdr-plugin-streamdev/server/setup.h

53 lines
1.0 KiB
C
Raw Normal View History

2004-12-30 23:43:55 +01:00
/*
2010-12-02 09:57:17 +01:00
* $Id: setup.h,v 1.4 2010/07/19 13:49:31 schmirl Exp $
2004-12-30 23:43:55 +01:00
*/
#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 HideMenuEntry;
2004-12-30 23:43:55 +01:00
int MaxClients;
int StartVTPServer;
int VTPServerPort;
char VTPBindIP[20];
int VTPPriority;
int AllowSuspend;
int LoopPrevention;
2004-12-30 23:43:55 +01:00
int StartHTTPServer;
int HTTPServerPort;
int HTTPPriority;
2004-12-30 23:43:55 +01:00
int HTTPStreamType;
char HTTPBindIP[20];
int StartIGMPServer;
int IGMPClientPort;
int IGMPPriority;
int IGMPStreamType;
char IGMPBindIP[20];
2004-12-30 23:43:55 +01:00
};
extern cStreamdevServerSetup StreamdevServerSetup;
class cStreamdevServerMenuSetupPage: public cMenuSetupPage {
2004-12-30 23:43:55 +01:00
private:
static const char* StreamTypes[];
2004-12-30 23:43:55 +01:00
cStreamdevServerSetup m_NewSetup;
void AddCategory(const char *Title);
2010-12-02 09:57:17 +01:00
void Set();
2004-12-30 23:43:55 +01:00
protected:
virtual void Store(void);
public:
cStreamdevServerMenuSetupPage(void);
virtual ~cStreamdevServerMenuSetupPage();
};
#endif // VDR_STREAMDEV_SETUPSERVER_H