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