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