From e3599df3083ec6aa9b8656589a171e2c5d3d7e7a Mon Sep 17 00:00:00 2001 From: schmirl Date: Fri, 13 Feb 2009 10:39:40 +0000 Subject: 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 --- server/component.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'server/component.c') diff --git a/server/component.c b/server/component.c index 1a584b5..b8f0de3 100644 --- a/server/component.c +++ b/server/component.c @@ -1,13 +1,14 @@ /* - * $Id: component.c,v 1.3 2005/05/09 20:22:29 lordjaxom Exp $ + * $Id: component.c,v 1.3.2.1 2009/02/13 10:39:42 schmirl Exp $ */ #include "server/component.h" #include "server/connection.h" cServerComponent::cServerComponent(const char *Protocol, const char *ListenIp, - uint ListenPort): + uint ListenPort, int Type, int IpProto): m_Protocol(Protocol), + m_Listen(Type, IpProto), m_ListenIp(ListenIp), m_ListenPort(ListenPort) { -- cgit v1.2.3