mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
fa578940f7
especially x264 still needs a SIGKILL sometimes - added --remove-destination to cp commands installing plugins - updated Italian translation (thanks to Diego Pierotto) - config option "client may suspend" hidden if not applicable - updated and enhanced README - added support for HTTP method HEAD - rewrite of externremux.sh, including support for various URL parameters, logging and improved shutdown - start externremux script in a separate process group - changed HTTP URL path for externremux from EXTERN to EXT (suggested by Rolf Ahrenberg) - HTTP headers now have to be emitted by externremux script - pass channel related information and URL parameters to externremux script through environment - implement CGI like interface for externremux script Modified Files: Tag: v0_4 CONTRIBUTORS HISTORY Makefile README common.c common.h i18n.c remux/extern.c remux/extern.h server/connection.c server/connection.h server/connectionHTTP.c server/connectionHTTP.h server/connectionIGMP.c server/connectionVTP.c server/livestreamer.c server/livestreamer.h server/menuHTTP.c server/setup.c server/setup.h server/streamer.c server/streamer.h streamdev/externremux.sh streamdev/streamdevhosts.conf
51 lines
1.0 KiB
C++
51 lines
1.0 KiB
C++
/*
|
|
* $Id: setup.h,v 1.1.1.1.2.3 2010/07/19 13:50:14 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 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);
|
|
virtual ~cStreamdevServerMenuSetupPage();
|
|
};
|
|
|
|
#endif // VDR_STREAMDEV_SETUPSERVER_H
|