]> git.sesse.net Git - vlc/blob - modules/services_discovery/sap.c
Strings review in services_discovery + remove unimplemented sap-cache option (Refs...
[vlc] / modules / services_discovery / sap.c
1 /*****************************************************************************
2  * sap.c :  SAP interface module
3  *****************************************************************************
4  * Copyright (C) 2004-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Includes
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31 #include <vlc/intf.h>
32
33 #include <network.h>
34 #include <charset.h>
35
36 #include <ctype.h>
37 #include <errno.h>
38
39 #ifdef HAVE_UNISTD_H
40 #    include <unistd.h>
41 #endif
42 #ifdef HAVE_SYS_TIME_H
43 #    include <sys/time.h>
44 #endif
45
46 #ifdef HAVE_ZLIB_H
47 #   include <zlib.h>
48 #endif
49
50 /************************************************************************
51  * Macros and definitions
52  ************************************************************************/
53
54 #define MAX_LINE_LENGTH 256
55
56 /* SAP is always on that port */
57 #define SAP_PORT 9875
58 /* Global-scope SAP address */
59 #define SAP_V4_GLOBAL_ADDRESS   "224.2.127.254"
60 /* Organization-local SAP address */
61 #define SAP_V4_ORG_ADDRESS      "239.195.255.255"
62 /* Local (smallest non-link-local scope) SAP address */
63 #define SAP_V4_LOCAL_ADDRESS    "239.255.255.255"
64 /* Link-local SAP address */
65 #define SAP_V4_LINK_ADDRESS     "224.0.0.255"
66 #define ADD_SESSION 1
67
68 #define SAP_V6_1 "FF0"
69 /* Scope is inserted between them */
70 #define SAP_V6_2 "::2:7FFE"
71 /* See RFC3513 for list of valid scopes */
72 /* FIXME: find a way to listen to link-local scope */
73 static const char ipv6_scopes[] = "1456789ABCDE";
74
75
76 /*****************************************************************************
77  * Module descriptor
78  *****************************************************************************/
79 #define SAP_ADDR_TEXT N_( "SAP multicast address" )
80 #define SAP_ADDR_LONGTEXT N_( "The SAP module normally chooses itself the " \
81                               "right addresses to listen to. However, you " \
82                               "can specify a specific address" )
83 #define SAP_IPV4_TEXT N_( "IPv4 SAP" )
84 #define SAP_IPV4_LONGTEXT N_( \
85       "Set this if you want the SAP module to listen to IPv4 announcements " \
86       "on the standard address." )
87 #define SAP_IPV6_TEXT N_( "IPv6 SAP" )
88 #define SAP_IPV6_LONGTEXT N_( \
89       "Set this if you want the SAP module to listen to IPv6 announcements " \
90       "on the standard address." )
91 #define SAP_SCOPE_TEXT N_( "IPv6 SAP scope" )
92 #define SAP_SCOPE_LONGTEXT N_( \
93        "Sets the scope for IPv6 announcements (default is 8)." )
94 #define SAP_TIMEOUT_TEXT N_( "SAP timeout (seconds)" )
95 #define SAP_TIMEOUT_LONGTEXT N_( \
96        "Sets the time before SAP items get deleted if no new announcement " \
97        "is received." )
98 #define SAP_PARSE_TEXT N_( "Try to parse the SAP" )
99 #define SAP_PARSE_LONGTEXT N_( \
100        "This enables actual parsing of the announces by the SAP module. " \
101        "Otherwise, all announcements are parsed by the \"livedotcom\" " \
102        "(RTP/RTSP) module." )
103 #define SAP_STRICT_TEXT N_( "SAP Strict mode" )
104 #define SAP_STRICT_LONGTEXT N_( \
105        "When this is set, the SAP parser will discard some non-compliant " \
106        "announcements." )
107 #define SAP_CACHE_TEXT N_("Use SAP cache")
108 #define SAP_CACHE_LONGTEXT N_( \
109        "This enables a SAP caching mechanism. " \
110        "This will result in lower SAP startup time, but you could end up " \
111        "with items corresponding to legacy streams." )
112 #define SAP_TIMESHIFT_TEXT N_("Allow timeshifting")
113 #define SAP_TIMESHIFT_LONGTEXT N_( "This automatically enables timeshifting " \
114         "for streams discovered through SAP announcements." )
115
116 /* Callbacks */
117     static int  Open ( vlc_object_t * );
118     static void Close( vlc_object_t * );
119     static int  OpenDemux ( vlc_object_t * );
120     static void CloseDemux ( vlc_object_t * );
121
122 vlc_module_begin();
123     set_shortname( _("SAP"));
124     set_description( _("SAP Announcements") );
125     set_category( CAT_PLAYLIST );
126     set_subcategory( SUBCAT_PLAYLIST_SD );
127
128     add_string( "sap-addr", NULL, NULL,
129                 SAP_ADDR_TEXT, SAP_ADDR_LONGTEXT, VLC_TRUE );
130     add_bool( "sap-ipv4", 1 , NULL,
131                SAP_IPV4_TEXT,SAP_IPV4_LONGTEXT, VLC_TRUE );
132     add_bool( "sap-ipv6", 1 , NULL,
133               SAP_IPV6_TEXT, SAP_IPV6_LONGTEXT, VLC_TRUE );
134     add_integer( "sap-timeout", 1800, NULL,
135                  SAP_TIMEOUT_TEXT, SAP_TIMEOUT_LONGTEXT, VLC_TRUE );
136     add_bool( "sap-parse", 1 , NULL,
137                SAP_PARSE_TEXT,SAP_PARSE_LONGTEXT, VLC_TRUE );
138     add_bool( "sap-strict", 0 , NULL,
139                SAP_STRICT_TEXT,SAP_STRICT_LONGTEXT, VLC_TRUE );
140 #if 0
141     add_bool( "sap-cache", 0 , NULL,
142                SAP_CACHE_TEXT,SAP_CACHE_LONGTEXT, VLC_TRUE );
143 #endif
144     add_bool( "sap-timeshift", 0 , NULL,
145               SAP_TIMESHIFT_TEXT,SAP_TIMESHIFT_LONGTEXT, VLC_TRUE );
146
147     set_capability( "services_discovery", 0 );
148     set_callbacks( Open, Close );
149
150     add_submodule();
151         set_description( _("SDP file parser for UDP") );
152         add_shortcut( "sdp" );
153         set_capability( "demux2", 51 );
154         set_callbacks( OpenDemux, CloseDemux );
155 vlc_module_end();
156
157
158 /*****************************************************************************
159  * Local structures
160  *****************************************************************************/
161
162 typedef struct sdp_t sdp_t;
163 typedef struct attribute_t attribute_t;
164 typedef struct sap_announce_t sap_announce_t;
165
166 /* The structure that contains sdp information */
167 struct  sdp_t
168 {
169     char *psz_sdp;
170
171     /* s= field */
172     char *psz_sessionname;
173
174     /* Raw m= and c= fields */
175     char *psz_connection;
176     char *psz_media;
177
178     /* o field */
179     char *psz_username;
180     char *psz_network_type;
181     char *psz_address_type;
182     char *psz_address;
183     int64_t i_session_id;
184
185     /* "computed" URI */
186     char *psz_uri;
187
188     int           i_in; /* IP version */
189
190     int           i_media;
191     int           i_media_type;
192
193     int           i_attributes;
194     attribute_t  **pp_attributes;
195 };
196
197 struct attribute_t
198 {
199     char *psz_field;
200     char *psz_value;
201 };
202
203 struct sap_announce_t
204 {
205     mtime_t i_last;
206
207     uint16_t    i_hash;
208     uint32_t    i_source[4];
209
210     /* SAP annnounces must only contain one SDP */
211     sdp_t       *p_sdp;
212
213     int i_item_id;
214 //    playlist_item_t *p_item;
215 };
216
217 struct services_discovery_sys_t
218 {
219     /* Socket descriptors */
220     int i_fd;
221     int *pi_fd;
222
223     /* playlist node */
224     playlist_item_t *p_node;
225     playlist_t *p_playlist;
226
227     /* Table of announces */
228     int i_announces;
229     struct sap_announce_t **pp_announces;
230
231     /* Modes */
232     vlc_bool_t  b_strict;
233     vlc_bool_t  b_parse;
234     vlc_bool_t  b_timeshift;
235
236     int i_timeout;
237 };
238
239 struct demux_sys_t
240 {
241     sdp_t *p_sdp;
242 };
243
244 /*****************************************************************************
245  * Local prototypes
246  *****************************************************************************/
247
248
249 /* Main functions */
250     static int Demux( demux_t *p_demux );
251     static int Control( demux_t *, int, va_list );
252     static void Run    ( services_discovery_t *p_sd );
253
254 /* Main parsing functions */
255     static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp );
256     static int ParseSAP( services_discovery_t *p_sd, uint8_t *p_buffer, int i_read );
257     static sdp_t *  ParseSDP( vlc_object_t *p_sd, char* psz_sdp );
258     static sap_announce_t *CreateAnnounce( services_discovery_t *, uint16_t, sdp_t * );
259     static int RemoveAnnounce( services_discovery_t *p_sd, sap_announce_t *p_announce );
260
261 /* Cache */
262     static void CacheLoad( services_discovery_t *p_sd );
263     static void CacheSave( services_discovery_t *p_sd );
264 /* Helper functions */
265     static char *GetAttribute( sdp_t *p_sdp, const char *psz_search );
266     static vlc_bool_t IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 );
267     static int InitSocket( services_discovery_t *p_sd, char *psz_address, int i_port );
268 #ifdef HAVE_ZLIB_H
269     static int Decompress( unsigned char *psz_src, unsigned char **_dst, int i_len );
270 #endif
271     static void FreeSDP( sdp_t *p_sdp );
272
273
274 #define FREE( p ) \
275     if( p ) { free( p ); (p) = NULL; }
276 /*****************************************************************************
277  * Open: initialize and create stuff
278  *****************************************************************************/
279 static int Open( vlc_object_t *p_this )
280 {
281     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
282     services_discovery_sys_t *p_sys  = (services_discovery_sys_t *)
283                                 malloc( sizeof( services_discovery_sys_t ) );
284
285     playlist_view_t     *p_view;
286     vlc_value_t         val;
287
288     p_sys->i_timeout = var_CreateGetInteger( p_sd, "sap-timeout" );
289
290     p_sd->pf_run = Run;
291     p_sd->p_sys  = p_sys;
292
293     p_sys->pi_fd = NULL;
294     p_sys->i_fd = 0;
295
296     p_sys->b_strict = var_CreateGetInteger( p_sd, "sap-strict");
297     p_sys->b_parse = var_CreateGetInteger( p_sd, "sap-parse" );
298
299 #if 0
300     if( var_CreateGetInteger( p_sd, "sap-cache" ) )
301     {
302         CacheLoad( p_sd );
303     }
304 #endif
305
306     /* Cache sap_timeshift value */
307     p_sys->b_timeshift = var_CreateGetInteger( p_sd, "sap-timeshift" )
308             ? VLC_TRUE : VLC_FALSE;
309
310     /* Create our playlist node */
311     p_sys->p_playlist = (playlist_t *)vlc_object_find( p_sd,
312                                                        VLC_OBJECT_PLAYLIST,
313                                                        FIND_ANYWHERE );
314     if( !p_sys->p_playlist )
315     {
316         msg_Warn( p_sd, "unable to find playlist, cancelling SAP listening");
317         return VLC_EGENERIC;
318     }
319
320     p_view = playlist_ViewFind( p_sys->p_playlist, VIEW_CATEGORY );
321     p_sys->p_node = playlist_NodeCreate( p_sys->p_playlist, VIEW_CATEGORY,
322                                          _("Session Announcements (SAP)"), p_view->p_root );
323     p_sys->p_node->i_flags |= PLAYLIST_RO_FLAG;
324     p_sys->p_node->i_flags &= ~PLAYLIST_SKIP_FLAG;
325     val.b_bool = VLC_TRUE;
326     var_Set( p_sys->p_playlist, "intf-change", val );
327
328     p_sys->i_announces = 0;
329     p_sys->pp_announces = NULL;
330
331     return VLC_SUCCESS;
332 }
333
334 /*****************************************************************************
335  * OpenDemux: initialize and create stuff
336  *****************************************************************************/
337 static int OpenDemux( vlc_object_t *p_this )
338 {
339     demux_t *p_demux = (demux_t *)p_this;
340     uint8_t *p_peek;
341     int i_max_sdp = 1024;
342     int i_sdp = 0;
343     char *psz_sdp = NULL;
344     sdp_t *p_sdp = NULL;
345
346     if( !var_CreateGetInteger( p_demux, "sap-parse" ) )
347     {
348         /* We want livedotcom module to parse this SDP file */
349         return VLC_EGENERIC;
350     }
351
352     /* Probe for SDP */
353     if( p_demux->s )
354     {
355         if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 ) return VLC_EGENERIC;
356
357         if( strncmp( (char*)p_peek, "v=0\r\n", 5 ) &&
358             strncmp( (char*)p_peek, "v=0\n", 4 ) &&
359             ( p_peek[0] < 'a' || p_peek[0] > 'z' || p_peek[1] != '=' ) )
360         {
361             return VLC_EGENERIC;
362         }
363     }
364
365     psz_sdp = (char *)malloc( i_max_sdp );
366     if( !psz_sdp ) return VLC_EGENERIC;
367
368     /* Gather the complete sdp file */
369     for( ;; )
370     {
371         int i_read = stream_Read( p_demux->s,
372                                   &psz_sdp[i_sdp], i_max_sdp - i_sdp - 1 );
373
374         if( i_read < 0 )
375         {
376             msg_Err( p_demux, "failed to read SDP" );
377             goto error;
378         }
379
380         i_sdp += i_read;
381
382         if( i_read < i_max_sdp - i_sdp - 1 )
383         {
384             psz_sdp[i_sdp] = '\0';
385             break;
386         }
387
388         i_max_sdp += 1000;
389         psz_sdp = (char *)realloc( psz_sdp, i_max_sdp );
390     }
391
392     p_sdp = ParseSDP( VLC_OBJECT(p_demux), psz_sdp );
393
394     if( !p_sdp )
395     {
396         msg_Warn( p_demux, "invalid SDP");
397         goto error;
398     }
399
400     if( p_sdp->i_media > 1 )
401     {
402         goto error;
403     }
404
405     if( ParseConnection( VLC_OBJECT( p_demux ), p_sdp ) )
406     {
407         p_sdp->psz_uri = NULL;
408     }
409     if( p_sdp->i_media_type != 33 && p_sdp->i_media_type != 32 &&
410         p_sdp->i_media_type != 14 )
411         goto error;
412
413     if( p_sdp->psz_uri == NULL ) goto error;
414
415     p_demux->p_sys = (demux_sys_t *)malloc( sizeof(demux_sys_t) );
416     p_demux->p_sys->p_sdp = p_sdp;
417     p_demux->pf_control = Control;
418     p_demux->pf_demux = Demux;
419
420     free( psz_sdp );
421     return VLC_SUCCESS;
422
423 error:
424     free( psz_sdp );
425     if( p_sdp ) FreeSDP( p_sdp );
426     stream_Seek( p_demux->s, 0 );
427     return VLC_EGENERIC;
428 }
429
430 /*****************************************************************************
431  * Close:
432  *****************************************************************************/
433 static void Close( vlc_object_t *p_this )
434 {
435     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
436     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
437
438     int i;
439
440     for( i = p_sys->i_fd-1 ; i >= 0 ; i-- )
441     {
442         net_Close( p_sys->pi_fd[i] );
443     }
444     FREE( p_sys->pi_fd );
445
446 #if 0
447     if( config_GetInt( p_sd, "sap-cache" ) )
448     {
449         CacheSave( p_sd );
450     }
451 #endif
452
453     for( i = p_sys->i_announces  - 1;  i>= 0; i-- )
454     {
455         RemoveAnnounce( p_sd, p_sys->pp_announces[i] );
456     }
457     FREE( p_sys->pp_announces );
458
459     if( p_sys->p_playlist )
460     {
461         playlist_NodeDelete( p_sys->p_playlist, p_sys->p_node, VLC_TRUE,
462                              VLC_TRUE );
463         vlc_object_release( p_sys->p_playlist );
464     }
465
466     free( p_sys );
467 }
468
469 /*****************************************************************************
470  * CloseDemux: Close the demuxer
471  *****************************************************************************/
472 static void CloseDemux( vlc_object_t *p_this )
473 {
474
475 }
476
477 /*****************************************************************************
478  * Run: main SAP thread
479  *****************************************************************************
480  * Listens to SAP packets, and sends them to packet_handle
481  *****************************************************************************/
482 #define MAX_SAP_BUFFER 5000
483
484 static void Run( services_discovery_t *p_sd )
485 {
486     char *psz_addr;
487     int i;
488
489     /* Braindead Winsock DNS resolver will get stuck over 2 seconds per failed
490      * DNS queries, even if the DNS server returns an error with milliseconds.
491      * You don't want to know why the bug (as of XP SP2) wasn't fixed since
492      * Winsock 1.1 from Windows 95, if not Windows 3.1.
493      * Anyway, to avoid a 30 seconds delay for failed IPv6 socket creation,
494      * we have to open sockets in Run() rather than Open(). */
495     if( var_CreateGetInteger( p_sd, "sap-ipv4" ) )
496     {
497         InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT );
498         InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT );
499         InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT );
500         InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT );
501     }
502     if( var_CreateGetInteger( p_sd, "sap-ipv6" ) )
503     {
504         char psz_address[] = SAP_V6_1"0"SAP_V6_2;
505         const char *c_scope;
506
507         for( c_scope = ipv6_scopes; *c_scope; c_scope++ )
508         {
509             psz_address[sizeof(SAP_V6_1) - 1] = *c_scope;
510             InitSocket( p_sd, psz_address, SAP_PORT );
511         }
512     }
513
514     psz_addr = var_CreateGetString( p_sd, "sap-addr" );
515     if( psz_addr && *psz_addr )
516     {
517         InitSocket( p_sd, psz_addr, SAP_PORT );
518     }
519
520     if( p_sd->p_sys->i_fd == 0 )
521     {
522         msg_Err( p_sd, "unable to listen on any address" );
523         return;
524     }
525
526     /* read SAP packets */
527     while( !p_sd->b_die )
528     {
529         int i_read;
530         uint8_t p_buffer[MAX_SAP_BUFFER+1];
531
532         i_read = net_Select( p_sd, p_sd->p_sys->pi_fd, NULL,
533                              p_sd->p_sys->i_fd, p_buffer,
534                              MAX_SAP_BUFFER, 500000 );
535
536         /* Check for items that need deletion */
537         for( i = 0; i < p_sd->p_sys->i_announces; i++ )
538         {
539             mtime_t i_timeout = ( mtime_t ) 1000000 * p_sd->p_sys->i_timeout;
540
541             if( mdate() - p_sd->p_sys->pp_announces[i]->i_last > i_timeout )
542             {
543                 struct sap_announce_t *p_announce;
544                 p_announce = p_sd->p_sys->pp_announces[i];
545
546                 /* Remove the playlist item */
547                 playlist_LockDelete( p_sd->p_sys->p_playlist,
548                                      p_announce->i_item_id );
549
550                 /* Remove the sap_announce from the array */
551                 REMOVE_ELEM( p_sd->p_sys->pp_announces,
552                            p_sd->p_sys->i_announces, i );
553
554                 free( p_announce );
555             }
556         }
557
558         /* Minimum length is > 6 */
559         if( i_read <= 6 )
560         {
561             if( i_read < 0 )
562             {
563                 msg_Warn( p_sd, "socket read error" );
564             }
565             continue;
566         }
567
568         p_buffer[i_read] = '\0';
569
570         /* Parse the packet */
571         ParseSAP( p_sd, p_buffer, i_read );
572     }
573 }
574
575 /**********************************************************************
576  * Demux: reads and demuxes data packets
577  * Return -1 if error, 0 if EOF, 1 else
578  **********************************************************************/
579 static int Demux( demux_t *p_demux )
580 {
581     sdp_t *p_sdp = p_demux->p_sys->p_sdp;
582     playlist_t *p_playlist;
583
584     p_playlist = (playlist_t *)vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
585                                                FIND_ANYWHERE );
586
587     p_playlist->status.p_item->i_flags |= PLAYLIST_DEL_FLAG;
588
589     playlist_Add( p_playlist, p_sdp->psz_uri, p_sdp->psz_sessionname,
590                  PLAYLIST_APPEND, PLAYLIST_END );
591
592     vlc_object_release( p_playlist );
593     if( p_sdp ) FreeSDP( p_sdp );
594
595     return VLC_SUCCESS;
596 }
597
598 static int Control( demux_t *p_demux, int i_query, va_list args )
599 {
600     return VLC_EGENERIC;
601 }
602
603 /**************************************************************
604  * Local functions
605  **************************************************************/
606
607 /* i_read is at least > 6 */
608 static int ParseSAP( services_discovery_t *p_sd, uint8_t *p_buffer, int i_read )
609 {
610     int                 i_version, i_address_type, i_hash, i;
611     char                *psz_sdp, *psz_foo, *psz_initial_sdp;
612     sdp_t               *p_sdp;
613     vlc_bool_t          b_compressed;
614     vlc_bool_t          b_need_delete = VLC_FALSE;
615
616     /* First, check the sap announce is correct */
617     i_version = p_buffer[0] >> 5;
618     if( i_version != 1 )
619     {
620        msg_Dbg( p_sd, "strange sap version %d found", i_version );
621     }
622
623     i_address_type = p_buffer[0] & 0x10;
624
625     if( (p_buffer[0] & 0x08) != 0 )
626     {
627         msg_Dbg( p_sd, "reserved bit incorrectly set" );
628         return VLC_EGENERIC;
629     }
630
631     if( (p_buffer[0] & 0x04) != 0 )
632     {
633         msg_Dbg( p_sd, "session deletion packet" );
634         b_need_delete = VLC_TRUE;
635     }
636
637     if( p_buffer[0] & 0x02  )
638     {
639         msg_Dbg( p_sd, "encrypted packet, unsupported" );
640         return VLC_EGENERIC;
641     }
642
643     b_compressed = p_buffer[0] & 0x01;
644
645     i_hash = ( p_buffer[2] << 8 ) + p_buffer[3];
646
647     if( p_sd->p_sys->b_strict && i_hash == 0 )
648     {
649         msg_Dbg( p_sd, "strict mode, discarding announce with null id hash");
650         return VLC_EGENERIC;
651     }
652
653     psz_sdp  = (char *)p_buffer + 4;
654     psz_initial_sdp = psz_sdp;
655
656     if( i_address_type == 0 ) /* ipv4 source address */
657     {
658         psz_sdp += 4;
659         if( i_read <= 9 )
660         {
661             msg_Warn( p_sd, "too short SAP packet" );
662             return VLC_EGENERIC;
663         }
664     }
665     else /* ipv6 source address */
666     {
667         psz_sdp += 16;
668         if( i_read <= 21 )
669         {
670             msg_Warn( p_sd, "too short SAP packet" );
671             return VLC_EGENERIC;
672         }
673     }
674
675     if( b_compressed )
676     {
677 #ifdef HAVE_ZLIB_H
678         uint8_t *p_decompressed_buffer = NULL;
679         int      i_decompressed_size;
680
681         i_decompressed_size = Decompress( (uint8_t *)psz_sdp,
682                    &p_decompressed_buffer, i_read - ( psz_sdp - (char *)p_buffer ) );
683         if( i_decompressed_size > 0 && i_decompressed_size < MAX_SAP_BUFFER )
684         {
685             memcpy( psz_sdp, p_decompressed_buffer, i_decompressed_size );
686             psz_sdp[i_decompressed_size] = '\0';
687             free( p_decompressed_buffer );
688         }
689 #else
690         msg_Warn( p_sd, "ignoring compressed sap packet" );
691         return VLC_EGENERIC;
692 #endif
693     }
694
695     /* Add the size of authentification info */
696     if( i_read < p_buffer[1] + (psz_sdp - psz_initial_sdp ) )
697     {
698         msg_Warn( p_sd, "too short SAP packet\n");
699         return VLC_EGENERIC;
700     }
701     psz_sdp += p_buffer[1];
702     psz_foo = psz_sdp;
703
704     /* Skip payload type */
705     /* Handle announces without \0 between SAP and SDP */
706     while( *psz_sdp != '\0' && ( psz_sdp[0] != 'v' && psz_sdp[1] != '=' ) )
707     {
708         if( psz_sdp - psz_initial_sdp >= i_read - 5 )
709         {
710             msg_Warn( p_sd, "empty SDP ?");
711         }
712         psz_sdp++;
713     }
714
715     if( *psz_sdp == '\0' )
716     {
717         psz_sdp++;
718     }
719     if( ( psz_sdp != psz_foo ) && strcasecmp( psz_foo, "application/sdp" ) )
720     {
721         msg_Dbg( p_sd, "unhandled content type: %s", psz_foo );
722     }
723     if( ( psz_sdp - (char *)p_buffer ) >= i_read )
724     {
725         msg_Warn( p_sd, "package without content" );
726         return VLC_EGENERIC;
727     }
728
729     /* Parse SDP info */
730     p_sdp = ParseSDP( VLC_OBJECT(p_sd), psz_sdp );
731
732     if( p_sdp == NULL )
733     {
734         return VLC_EGENERIC;
735     }
736
737     /* Decide whether we should add a playlist item for this SDP */
738     /* Parse connection information (c= & m= ) */
739     if( ParseConnection( VLC_OBJECT(p_sd), p_sdp ) )
740     {
741         p_sdp->psz_uri = NULL;
742     }
743
744     /* Multi-media or no-parse -> pass to LIVE.COM */
745     if( p_sdp->i_media > 1 || ( p_sdp->i_media_type != 14 &&
746                                 p_sdp->i_media_type != 32 &&
747                                 p_sdp->i_media_type != 33) ||
748         p_sd->p_sys->b_parse == VLC_FALSE )
749     {
750         if( p_sdp->psz_uri ) free( p_sdp->psz_uri );
751         asprintf( &p_sdp->psz_uri, "sdp://%s", p_sdp->psz_sdp );
752     }
753
754     if( p_sdp->psz_uri == NULL ) return VLC_EGENERIC;
755
756     for( i = 0 ; i< p_sd->p_sys->i_announces ; i++ )
757     {
758         /* FIXME: slow */
759         /* FIXME: we create a new announce each time the sdp changes */
760         if( IsSameSession( p_sd->p_sys->pp_announces[i]->p_sdp, p_sdp ) )
761         {
762             if( b_need_delete )
763             {
764                 RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i]);
765                 return VLC_SUCCESS;
766             }
767             else
768             {
769                 p_sd->p_sys->pp_announces[i]->i_last = mdate();
770                 FreeSDP( p_sdp );
771                 return VLC_SUCCESS;
772             }
773         }
774     }
775     /* Add item */
776     if( p_sdp->i_media > 1 )
777     {
778         msg_Dbg( p_sd, "passing to liveMedia" );
779     }
780
781     CreateAnnounce( p_sd, i_hash, p_sdp );
782
783     return VLC_SUCCESS;
784 }
785
786 sap_announce_t *CreateAnnounce( services_discovery_t *p_sd, uint16_t i_hash,
787                                 sdp_t *p_sdp )
788 {
789     playlist_item_t     *p_item, *p_child;
790     char *psz_value;
791     sap_announce_t *p_sap = (sap_announce_t *)malloc(
792                                         sizeof(sap_announce_t ) );
793     services_discovery_sys_t *p_sys;
794     if( p_sap == NULL )
795         return NULL;
796
797     p_sys = p_sd->p_sys;
798
799     EnsureUTF8( p_sdp->psz_sessionname );
800     p_sap->i_last = mdate();
801     p_sap->i_hash = i_hash;
802     p_sap->p_sdp = p_sdp;
803     p_sap->i_item_id = -1;
804
805     /* Create the actual playlist item here */
806     p_item = playlist_ItemNew( p_sd, p_sap->p_sdp->psz_uri, p_sdp->psz_sessionname );
807
808     if( !p_item )
809     {
810         free( p_sap );
811         return NULL;
812     }
813
814     if( p_sys->b_timeshift )
815         playlist_ItemAddOption( p_item, ":access-filter=timeshift" );
816
817     psz_value = GetAttribute( p_sap->p_sdp, "tool" );
818     if( psz_value != NULL )
819     {
820         vlc_input_item_AddInfo( &p_item->input, _("Session"),
821                                 _("Tool"), psz_value );
822     }
823     if( strcmp( p_sdp->psz_username, "-" ) )
824     {
825         vlc_input_item_AddInfo( &p_item->input, _("Session"),
826                                 _("User"), p_sdp->psz_username );
827     }
828
829     psz_value = GetAttribute( p_sap->p_sdp, "x-plgroup" );
830
831     if( psz_value == NULL )
832     {
833         psz_value = GetAttribute( p_sap->p_sdp, "plgroup" );
834     }
835
836     /* Find or Create the group playlist non-playable item */
837     if( psz_value != NULL )
838     {
839         EnsureUTF8( psz_value );
840
841         p_child = playlist_ChildSearchName( p_sys->p_node, psz_value );
842
843         if( p_child == NULL )
844         {
845             p_child = playlist_NodeCreate( p_sys->p_playlist,
846                                            VIEW_CATEGORY, psz_value,
847                                            p_sys->p_node );
848             p_child->i_flags &= ~PLAYLIST_SKIP_FLAG;
849         }
850     }
851     else
852     {
853         p_child = p_sys->p_node;
854     }
855
856     p_item->i_flags &= ~PLAYLIST_SKIP_FLAG;
857     p_item->i_flags &= ~PLAYLIST_SAVE_FLAG;
858
859     playlist_NodeAddItem( p_sys->p_playlist, p_item, VIEW_CATEGORY, p_child,
860                           PLAYLIST_APPEND, PLAYLIST_END );
861
862     p_sap->i_item_id = p_item->input.i_id;
863
864     TAB_APPEND( p_sys->i_announces, p_sys->pp_announces, p_sap );
865
866     return p_sap;
867 }
868
869 static char *GetAttribute( sdp_t *p_sdp, const char *psz_search )
870 {
871     int i;
872
873     for( i = 0 ; i< p_sdp->i_attributes; i++ )
874     {
875         if( !strncmp( p_sdp->pp_attributes[i]->psz_field, psz_search,
876                       strlen( p_sdp->pp_attributes[i]->psz_field ) ) )
877         {
878             return p_sdp->pp_attributes[i]->psz_value;
879         }
880     }
881     return NULL;
882 }
883
884
885 /* Fill p_sdp->psz_uri */
886 static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
887 {
888     char *psz_eof;
889     char *psz_parse;
890     char *psz_uri = NULL;
891     char *psz_proto = NULL;
892     char psz_source[256];
893     int i_port = 0;
894
895     /* Parse c= field */
896     if( p_sdp->psz_connection )
897     {
898         psz_parse = p_sdp->psz_connection;
899
900         psz_eof = strchr( psz_parse, ' ' );
901
902         if( psz_eof )
903         {
904             *psz_eof = '\0';
905             psz_parse = psz_eof + 1;
906         }
907         else
908         {
909             msg_Warn( p_obj, "unable to parse c field (1)");
910             return VLC_EGENERIC;
911         }
912
913         psz_eof = strchr( psz_parse, ' ' );
914
915         if( psz_eof )
916         {
917             *psz_eof = '\0';
918             if( !strncmp( psz_parse, "IP4", 3 ) )
919             {
920                 p_sdp->i_in = 4;
921             }
922             else if( !strncmp( psz_parse, "IP6", 3 ) )
923             {
924                 p_sdp->i_in = 6;
925             }
926             else
927             {
928                 p_sdp->i_in = 0;
929             }
930             psz_parse = psz_eof + 1;
931         }
932         else
933         {
934             msg_Warn( p_obj, "unable to parse c field (2)");
935             return VLC_EGENERIC;
936         }
937
938         psz_eof = strchr( psz_parse, '/' );
939
940         if( psz_eof )
941         {
942             *psz_eof = '\0';
943         }
944         else
945         {
946             msg_Dbg( p_obj, "incorrect c field, %s", p_sdp->psz_connection );
947         }
948         if( p_sdp->i_in == 6 && ( isxdigit( *psz_parse ) || *psz_parse == ':' ) )
949         {
950             asprintf( &psz_uri, "[%s]", psz_parse );
951         }
952         else psz_uri = strdup( psz_parse );
953
954     }
955
956     /* Parse m= field */
957     if( p_sdp->psz_media )
958     {
959         psz_parse = p_sdp->psz_media;
960
961         psz_eof = strchr( psz_parse, ' ' );
962
963         if( psz_eof )
964         {
965             *psz_eof = '\0';
966
967             if( strncmp( psz_parse, "audio", 5 )  &&
968                 strncmp( psz_parse, "video", 5 ) )
969             {
970                 msg_Warn( p_obj, "unhandled media type -%s-", psz_parse );
971                 FREE( psz_uri );
972                 return VLC_EGENERIC;
973             }
974
975             psz_parse = psz_eof + 1;
976         }
977         else
978         {
979             msg_Warn( p_obj, "unable to parse m field (1)");
980             FREE( psz_uri );
981             return VLC_EGENERIC;
982         }
983
984         psz_eof = strchr( psz_parse, ' ' );
985
986         if( psz_eof )
987         {
988             *psz_eof = '\0';
989
990             /* FIXME : multiple port ! */
991             i_port = atoi( psz_parse );
992
993             if( i_port <= 0 || i_port >= 65536 )
994             {
995                 msg_Warn( p_obj, "invalid transport port %i", i_port );
996             }
997
998             psz_parse = psz_eof + 1;
999         }
1000         else
1001         {
1002             msg_Warn( p_obj, "unable to parse m field (2)");
1003             FREE( psz_uri );
1004             return VLC_EGENERIC;
1005         }
1006
1007         psz_eof = strchr( psz_parse, ' ' );
1008
1009         if( psz_eof )
1010         {
1011             *psz_eof = '\0';
1012             psz_proto = strdup( psz_parse );
1013
1014             psz_parse = psz_eof + 1;
1015             p_sdp->i_media_type = atoi( psz_parse );
1016
1017         }
1018         else
1019         {
1020             msg_Dbg( p_obj, "incorrect m field, %s", p_sdp->psz_media );
1021             p_sdp->i_media_type = 33;
1022             psz_proto = strdup( psz_parse );
1023         }
1024     }
1025
1026     if( psz_proto && !strncmp( psz_proto, "RTP/AVP", 7 ) )
1027     {
1028         free( psz_proto );
1029         psz_proto = strdup( "rtp" );
1030     }
1031     if( psz_proto && !strncasecmp( psz_proto, "UDP", 3 ) )
1032     {
1033         free( psz_proto );
1034         psz_proto = strdup( "udp" );
1035     }
1036
1037     /* FIXME: HTTP support */
1038
1039     if( i_port == 0 )
1040     {
1041         i_port = 1234;
1042     }
1043
1044     /* handle SSM case */
1045     psz_parse = GetAttribute( p_sdp, "source-filter" );
1046     psz_source[0] = '\0';
1047
1048     if( psz_parse ) sscanf( psz_parse, " incl IN IP%*s %*s %255s ", psz_source);
1049
1050     asprintf( &p_sdp->psz_uri, "%s://%s@%s:%i", psz_proto, psz_source,
1051               psz_uri, i_port );
1052
1053     FREE( psz_uri );
1054     FREE( psz_proto );
1055     return VLC_SUCCESS;
1056 }
1057
1058 /***********************************************************************
1059  * ParseSDP : SDP parsing
1060  * *********************************************************************
1061  * Validate SDP and parse all fields
1062  ***********************************************************************/
1063 static sdp_t *  ParseSDP( vlc_object_t *p_obj, char* psz_sdp )
1064 {
1065     sdp_t *p_sdp;
1066     vlc_bool_t b_invalid = VLC_FALSE;
1067     vlc_bool_t b_end = VLC_FALSE;
1068     if( psz_sdp == NULL )
1069     {
1070         return NULL;
1071     }
1072
1073     if( psz_sdp[0] != 'v' || psz_sdp[1] != '=' )
1074     {
1075         msg_Warn( p_obj, "bad packet" );
1076         return NULL;
1077     }
1078
1079     p_sdp = (sdp_t *)malloc( sizeof( sdp_t ) );
1080     if( p_sdp == NULL )
1081         return NULL;
1082
1083     p_sdp->psz_sdp = strdup( psz_sdp );
1084     if( p_sdp->psz_sdp == NULL )
1085     {
1086         free( p_sdp );
1087         return NULL;
1088     }
1089
1090     p_sdp->psz_sessionname = NULL;
1091     p_sdp->psz_media       = NULL;
1092     p_sdp->psz_connection  = NULL;
1093     p_sdp->psz_uri         = NULL;
1094     p_sdp->psz_address     = NULL;
1095     p_sdp->psz_address_type= NULL;
1096
1097     p_sdp->i_media         = 0;
1098     p_sdp->i_attributes    = 0;
1099     p_sdp->pp_attributes   = NULL;
1100
1101     while( *psz_sdp != '\0' && b_end == VLC_FALSE  )
1102     {
1103         char *psz_eol;
1104         char *psz_eof;
1105         char *psz_parse;
1106         char *psz_sess_id;
1107
1108         while( *psz_sdp == '\r' || *psz_sdp == '\n' ||
1109                *psz_sdp == ' ' || *psz_sdp == '\t' )
1110         {
1111             psz_sdp++;
1112         }
1113
1114         if( ( psz_eol = strchr( psz_sdp, '\n' ) ) == NULL )
1115         {
1116             psz_eol = psz_sdp + strlen( psz_sdp );
1117             b_end = VLC_TRUE;
1118         }
1119         if( psz_eol > psz_sdp && *( psz_eol - 1 ) == '\r' )
1120         {
1121             psz_eol--;
1122         }
1123
1124         if( psz_eol <= psz_sdp )
1125         {
1126             break;
1127         }
1128         *psz_eol++ = '\0';
1129
1130         /* no space allowed between fields */
1131         if( psz_sdp[1] != '=' )
1132         {
1133             msg_Warn( p_obj, "invalid packet" ) ;
1134             FreeSDP( p_sdp );
1135             return NULL;
1136         }
1137
1138         /* Now parse each line */
1139         switch( psz_sdp[0] )
1140         {
1141             case( 'v' ):
1142                 break;
1143             case( 's' ):
1144                 p_sdp->psz_sessionname = strdup( &psz_sdp[2] );
1145                 break;
1146             case ( 'o' ):
1147             {
1148                 int i_field = 0;
1149                 /* o field is <username> <session id> <version>
1150                  *  <network type> <address type> <address> */
1151
1152 #define GET_FIELD( store ) \
1153                 psz_eof = strchr( psz_parse, ' ' ); \
1154                 if( psz_eof ) \
1155                 { \
1156                     *psz_eof=0; store = strdup( psz_parse ); \
1157                 } \
1158                 else \
1159                 { \
1160                     if( i_field != 5 ) \
1161                     { \
1162                         b_invalid = VLC_TRUE; break; \
1163                     } \
1164                     else \
1165                     { \
1166                         store = strdup( psz_parse ); \
1167                     } \
1168                 }; \
1169                 psz_parse = psz_eof + 1; i_field++;
1170
1171
1172                 psz_parse = &psz_sdp[2];
1173                 GET_FIELD( p_sdp->psz_username );
1174                 GET_FIELD( psz_sess_id );
1175
1176                 p_sdp->i_session_id = atoll( psz_sess_id );
1177
1178                 FREE( psz_sess_id );
1179
1180                 GET_FIELD( psz_sess_id );
1181                 FREE( psz_sess_id );
1182
1183                 GET_FIELD( p_sdp->psz_network_type );
1184                 GET_FIELD( p_sdp->psz_address_type );
1185                 GET_FIELD( p_sdp->psz_address );
1186
1187                 break;
1188             }
1189             case( 'i' ):
1190             case( 'u' ):
1191             case( 'e' ):
1192             case( 'p' ):
1193             case( 't' ):
1194             case( 'r' ):
1195                 break;
1196             case( 'a' ): /* attribute */
1197             {
1198                 char *psz_eon = strchr( &psz_sdp[2], ':' );
1199                 attribute_t *p_attr = malloc( sizeof( attribute_t ) );
1200
1201                 /* Attribute with value */
1202                 if( psz_eon )
1203                 {
1204                     *psz_eon++ = '\0';
1205
1206                     p_attr->psz_field = strdup( &psz_sdp[2] );
1207                     p_attr->psz_value = strdup( psz_eon );
1208                 }
1209                 else /* Attribute without value */
1210                 {
1211                     p_attr->psz_field = strdup( &psz_sdp[2] );
1212                     p_attr->psz_value = NULL;
1213                 }
1214
1215                 TAB_APPEND( p_sdp->i_attributes, p_sdp->pp_attributes, p_attr );
1216                 break;
1217             }
1218
1219             case( 'm' ): /* Media announcement */
1220             {
1221                 /* If we have several medias, we pass the announcement to
1222                  * LIVE.COM, so just count them */
1223                 p_sdp->i_media++;
1224                 if( p_sdp->i_media == 1 )
1225                 {
1226                     p_sdp->psz_media = strdup( &psz_sdp[2] );
1227                 }
1228                 break;
1229             }
1230
1231             case( 'c' ):
1232             {
1233                 if( p_sdp->i_media > 1 )
1234                     break;
1235
1236                 p_sdp->psz_connection = strdup( &psz_sdp[2] );
1237                 break;
1238             }
1239
1240             default:
1241                break;
1242         }
1243
1244         if( b_invalid )
1245         {
1246             FreeSDP( p_sdp );
1247             return NULL;
1248         }
1249
1250         psz_sdp = psz_eol;
1251     }
1252
1253     return p_sdp;
1254 }
1255
1256 static int InitSocket( services_discovery_t *p_sd, char *psz_address,
1257                        int i_port )
1258 {
1259     int i_fd = net_OpenUDP( p_sd, psz_address, i_port, NULL, 0 );
1260
1261     if( i_fd != -1 )
1262     {
1263         net_StopSend( i_fd );
1264         INSERT_ELEM(  p_sd->p_sys->pi_fd, p_sd->p_sys->i_fd,
1265                       p_sd->p_sys->i_fd, i_fd );
1266         return VLC_SUCCESS;
1267     }
1268
1269     return VLC_EGENERIC;
1270 }
1271
1272 #ifdef HAVE_ZLIB_H
1273 static int Decompress( unsigned char *psz_src, unsigned char **_dst, int i_len )
1274 {
1275     int i_result, i_dstsize, n;
1276     unsigned char *psz_dst;
1277     z_stream d_stream;
1278
1279     d_stream.zalloc = (alloc_func)0;
1280     d_stream.zfree = (free_func)0;
1281     d_stream.opaque = (voidpf)0;
1282
1283     i_result = inflateInit(&d_stream);
1284     if( i_result != Z_OK )
1285     {
1286         printf( "inflateInit() failed. Result: %d\n", i_result );
1287         return( -1 );
1288     }
1289 #if 0
1290     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
1291     i_position = p_playlist->i_index;
1292
1293     /* Gather the complete sdp file */
1294     for( ;; )
1295     {
1296         int i_read = stream_Read( p_demux->s, &p_sdp[i_sdp], i_sdp_max - i_sdp - 1 );
1297 #endif
1298     d_stream.next_in = (Bytef *)psz_src;
1299     d_stream.avail_in = i_len;
1300     n = 0;
1301
1302     psz_dst = NULL;
1303
1304     do
1305     {
1306         n++;
1307         psz_dst = (unsigned char *)realloc( psz_dst, n * 1000 );
1308         d_stream.next_out = (Bytef *)&psz_dst[(n - 1) * 1000];
1309         d_stream.avail_out = 1000;
1310
1311         i_result = inflate(&d_stream, Z_NO_FLUSH);
1312         if( ( i_result != Z_OK ) && ( i_result != Z_STREAM_END ) )
1313         {
1314             printf( "Zlib decompression failed. Result: %d\n", i_result );
1315             return( -1 );
1316         }
1317     }
1318     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
1319            ( i_result != Z_STREAM_END ) );
1320
1321     i_dstsize = d_stream.total_out;
1322     inflateEnd( &d_stream );
1323
1324     *_dst = (unsigned char *)realloc( psz_dst, i_dstsize );
1325
1326     return i_dstsize;
1327 }
1328 #endif
1329
1330
1331 static void FreeSDP( sdp_t *p_sdp )
1332 {
1333     int i;
1334     FREE( p_sdp->psz_sdp );
1335     FREE( p_sdp->psz_sessionname );
1336     FREE( p_sdp->psz_connection );
1337     FREE( p_sdp->psz_media );
1338     FREE( p_sdp->psz_uri );
1339     FREE( p_sdp->psz_username );
1340     FREE( p_sdp->psz_network_type );
1341
1342     FREE( p_sdp->psz_address );
1343     FREE( p_sdp->psz_address_type );
1344
1345     for( i= p_sdp->i_attributes - 1; i >= 0 ; i-- )
1346     {
1347         struct attribute_t *p_attr = p_sdp->pp_attributes[i];
1348         FREE( p_sdp->pp_attributes[i]->psz_field );
1349         FREE( p_sdp->pp_attributes[i]->psz_value );
1350         REMOVE_ELEM( p_sdp->pp_attributes, p_sdp->i_attributes, i);
1351         FREE( p_attr );
1352     }
1353     free( p_sdp );
1354 }
1355
1356 static int RemoveAnnounce( services_discovery_t *p_sd,
1357                            sap_announce_t *p_announce )
1358 {
1359     int i;
1360
1361     if( p_announce->p_sdp ) FreeSDP( p_announce->p_sdp );
1362
1363     if( p_announce->i_item_id > -1 )
1364     {
1365         playlist_LockDelete( p_sd->p_sys->p_playlist, p_announce->i_item_id );
1366     }
1367
1368     for( i = 0; i< p_sd->p_sys->i_announces; i++)
1369     {
1370         if( p_sd->p_sys->pp_announces[i] == p_announce )
1371         {
1372             REMOVE_ELEM( p_sd->p_sys->pp_announces, p_sd->p_sys->i_announces,
1373                          i);
1374             break;
1375         }
1376     }
1377
1378     free( p_announce );
1379
1380     return VLC_SUCCESS;
1381 }
1382
1383 static vlc_bool_t IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 )
1384 {
1385     /* A session is identified by
1386      * username, session_id, network type, address type and address */
1387     if( p_sdp1->psz_username && p_sdp2->psz_username &&
1388         p_sdp1->psz_network_type && p_sdp2->psz_network_type &&
1389         p_sdp1->psz_address_type && p_sdp2->psz_address_type &&
1390         p_sdp1->psz_address &&  p_sdp2->psz_address )
1391     {
1392         if(!strcmp( p_sdp1->psz_username , p_sdp2->psz_username ) &&
1393            !strcmp( p_sdp1->psz_network_type , p_sdp2->psz_network_type ) &&
1394            !strcmp( p_sdp1->psz_address_type , p_sdp2->psz_address_type ) &&
1395            !strcmp( p_sdp1->psz_address , p_sdp2->psz_address ) &&
1396            p_sdp1->i_session_id == p_sdp2->i_session_id )
1397         {
1398             return VLC_TRUE;
1399         }
1400         else
1401         {
1402             return VLC_FALSE;
1403         }
1404     }
1405     else
1406     {
1407         return VLC_FALSE;
1408     }
1409 }
1410
1411
1412 static void CacheLoad( services_discovery_t *p_sd )
1413 {
1414     msg_Warn( p_sd, "cache not implemented") ;
1415 }
1416
1417 static void CacheSave( services_discovery_t *p_sd )
1418 {
1419     msg_Warn( p_sd, "cache not implemented") ;
1420 }