summaryrefslogtreecommitdiff
path: root/server/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/setup.h')
-rw-r--r--server/setup.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/setup.h b/server/setup.h
index 4b5eb50..aa66378 100644
--- a/server/setup.h
+++ b/server/setup.h
@@ -17,17 +17,19 @@ struct cStreamdevServerSetup {
int StartVTPServer;
int VTPServerPort;
char VTPBindIP[20];
+ int VTPPriority;
+ int AllowSuspend;
int LoopPrevention;
int StartHTTPServer;
int HTTPServerPort;
+ int HTTPPriority;
int HTTPStreamType;
char HTTPBindIP[20];
int StartIGMPServer;
int IGMPClientPort;
+ int IGMPPriority;
int IGMPStreamType;
char IGMPBindIP[20];
- int SuspendMode;
- int AllowSuspend;
};
extern cStreamdevServerSetup StreamdevServerSetup;
@@ -35,14 +37,12 @@ extern cStreamdevServerSetup StreamdevServerSetup;
class cStreamdevServerMenuSetupPage: public cMenuSetupPage {
private:
static const char* StreamTypes[];
- static const char* SuspendModes[];
cStreamdevServerSetup m_NewSetup;
void AddCategory(const char *Title);
void Set();
protected:
virtual void Store(void);
- virtual eOSState ProcessKey(eKeys Key);
public:
cStreamdevServerMenuSetupPage(void);