vdr-plugin-streamdev/server/setup.h

51 lines
1.0 KiB
C
Raw Normal View History

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