From d5eca7f26868bafd264e6815dc04459805cdd1e7 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 1 Jul 2006 17:15:30 +0000 Subject: [PATCH] only infrastructure --- mcast.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mcast.c b/mcast.c index 242fac0..e328932 100644 --- a/mcast.c +++ b/mcast.c @@ -2,6 +2,8 @@ #include #include #include + +#include "common.h" #include "mcast.h" int is_mcast(char *url) @@ -17,9 +19,16 @@ int is_mcast(char *url) int open_mcast(char *url) { + struct dvb_host *dvbhost; + int fd; + if(!is_mcast(url)) return -1; + dvbhost = parse(&(url[6]), "2000"); + fprintf(stderr,"multicast currently unimplemented!\n"); return -1; + + return fd; } -- 2.39.2