diff options
author | schmirl <schmirl> | 2009-02-13 10:39:40 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-02-13 10:39:40 +0000 |
commit | e3599df3083ec6aa9b8656589a171e2c5d3d7e7a (patch) | |
tree | 875d67c52b228d945bf95e640ef57f1270319f72 /server/connection.h | |
parent | fa06a6068bd47868fe65b24af8f0a469ae6b46a6 (diff) | |
download | vdr-plugin-streamdev-e3599df3083ec6aa9b8656589a171e2c5d3d7e7a.tar.gz vdr-plugin-streamdev-e3599df3083ec6aa9b8656589a171e2c5d3d7e7a.tar.bz2 |
Added IGMP Multicast server
Modified Files:
Tag: v0_4
CONTRIBUTORS HISTORY Makefile README i18n.c 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:
Tag: v0_4
patches/vdr-cap_net_raw.diff server/componentIGMP.c
server/componentIGMP.h server/connectionIGMP.c
server/connectionIGMP.h
Diffstat (limited to 'server/connection.h')
-rw-r--r-- | server/connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/connection.h b/server/connection.h index 0ca7153..6239c28 100644 --- a/server/connection.h +++ b/server/connection.h @@ -1,5 +1,5 @@ /* - * $Id: connection.h,v 1.5.2.1 2008/10/14 11:05:59 schmirl Exp $ + * $Id: connection.h,v 1.5.2.2 2009/02/13 10:39:42 schmirl Exp $ */ #ifndef VDR_STREAMDEV_SERVER_CONNECTION_H @@ -44,7 +44,7 @@ protected: public: /* If you derive, specify a short string such as HTTP for Protocol, which will be displayed in error messages */ - cServerConnection(const char *Protocol); + cServerConnection(const char *Protocol, int Type = SOCK_STREAM); virtual ~cServerConnection(); /* If true, any client IP will be accepted */ |