]> git.sesse.net Git - vlc/blob - modules/services_discovery/sap.c
* Added net_AddressIsMulticast that takes a string and returns true if the string...
[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/intf.h>
31
32 #include <vlc/input.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 static const char ipv6_scopes[] = "12456789ABCDE";
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 announces 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 announces " \
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 announces " \
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 announces (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 announce " \
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 announces 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        "announces." )
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
110 /* Callbacks */
111     static int  Open ( vlc_object_t * );
112     static void Close( vlc_object_t * );
113     static int  OpenDemux ( vlc_object_t * );
114     static void CloseDemux ( vlc_object_t * );
115
116 vlc_module_begin();
117     set_shortname( _("SAP"));
118     set_description( _("SAP announces") );
119     set_category( CAT_PLAYLIST );
120     set_subcategory( SUBCAT_PLAYLIST_SD );
121
122     add_string( "sap-addr", NULL, NULL,
123                 SAP_ADDR_TEXT, SAP_ADDR_LONGTEXT, VLC_TRUE );
124     add_bool( "sap-ipv4", 1 , NULL,
125                SAP_IPV4_TEXT,SAP_IPV4_LONGTEXT, VLC_TRUE );
126     add_bool( "sap-ipv6", 1 , NULL,
127               SAP_IPV6_TEXT, SAP_IPV6_LONGTEXT, VLC_TRUE );
128     add_integer( "sap-timeout", 1800, NULL,
129                  SAP_TIMEOUT_TEXT, SAP_TIMEOUT_LONGTEXT, VLC_TRUE );
130     add_bool( "sap-parse", 1 , NULL,
131                SAP_PARSE_TEXT,SAP_PARSE_LONGTEXT, VLC_TRUE );
132     add_bool( "sap-strict", 0 , NULL,
133                SAP_STRICT_TEXT,SAP_STRICT_LONGTEXT, VLC_TRUE );
134     add_bool( "sap-cache", 0 , NULL,
135                SAP_CACHE_TEXT,SAP_CACHE_LONGTEXT, VLC_TRUE );
136
137     set_capability( "services_discovery", 0 );
138     set_callbacks( Open, Close );
139
140     add_submodule();
141         set_description( _("SDP file parser for UDP") );
142         add_shortcut( "sdp" );
143         set_capability( "demux2", 51 );
144         set_callbacks( OpenDemux, CloseDemux );
145 vlc_module_end();
146
147
148 /*****************************************************************************
149  * Local structures
150  *****************************************************************************/
151
152 typedef struct sdp_t sdp_t;
153 typedef struct attribute_t attribute_t;
154 typedef struct sap_announce_t sap_announce_t;
155
156 /* The structure that contains sdp information */
157 struct  sdp_t
158 {
159     char *psz_sdp;
160
161     /* s= field */
162     char *psz_sessionname;
163
164     /* Raw m= and c= fields */
165     char *psz_connection;
166     char *psz_media;
167
168     /* o field */
169     char *psz_username;
170     char *psz_network_type;
171     char *psz_address_type;
172     char *psz_address;
173     int64_t i_session_id;
174
175     /* "computed" URI */
176     char *psz_uri;
177
178     int         i_in; /* IP version */
179
180     int           i_media;
181     int           i_media_type;
182
183     int           i_attributes;
184     attribute_t  **pp_attributes;
185 };
186
187 struct attribute_t
188 {
189     char *psz_field;
190     char *psz_value;
191 };
192
193 struct sap_announce_t
194 {
195     mtime_t i_last;
196
197     uint16_t    i_hash;
198     uint32_t    i_source[4];
199
200     /* SAP annnounces must only contain one SDP */
201     sdp_t       *p_sdp;
202
203     int i_item_id;
204 //    playlist_item_t *p_item;
205 };
206
207 struct services_discovery_sys_t
208 {
209     /* Socket descriptors */
210     int i_fd;
211     int *pi_fd;
212
213     /* playlist node */
214     playlist_item_t *p_node;
215     playlist_t *p_playlist;
216
217     /* charset conversion */
218     vlc_iconv_t iconvHandle;
219
220     /* Table of announces */
221     int i_announces;
222     struct sap_announce_t **pp_announces;
223
224     /* Modes */
225     vlc_bool_t  b_strict;
226     vlc_bool_t  b_parse;
227
228     int i_timeout;
229 };
230
231 struct demux_sys_t
232 {
233     sdp_t *p_sdp;
234 };
235
236 /*****************************************************************************
237  * Local prototypes
238  *****************************************************************************/
239
240
241 /* Main functions */
242     static int Demux( demux_t *p_demux );
243     static int Control( demux_t *, int, va_list );
244     static void Run    ( services_discovery_t *p_sd );
245
246 /* Main parsing functions */
247     static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp );
248     static int ParseSAP( services_discovery_t *p_sd, uint8_t *p_buffer, int i_read );
249     static sdp_t *  ParseSDP( vlc_object_t *p_sd, char* psz_sdp );
250     static sap_announce_t *CreateAnnounce( services_discovery_t *, uint16_t, sdp_t * );
251     static int RemoveAnnounce( services_discovery_t *p_sd, sap_announce_t *p_announce );
252
253 /* Cache */
254     static void CacheLoad( services_discovery_t *p_sd );
255     static void CacheSave( services_discovery_t *p_sd );
256 /* Helper functions */
257     static char *GetAttribute( sdp_t *p_sdp, const char *psz_search );
258     static vlc_bool_t IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 );
259     static char *convert_from_utf8( struct services_discovery_t *p_sd,
260                                    char *psz_unicode );
261     static int InitSocket( services_discovery_t *p_sd, char *psz_address, int i_port );
262 #ifdef HAVE_ZLIB_H
263     static int Decompress( unsigned char *psz_src, unsigned char **_dst, int i_len );
264 #endif
265     static void FreeSDP( sdp_t *p_sdp );
266
267
268 #define FREE( p ) \
269     if( p ) { free( p ); (p) = NULL; }
270 /*****************************************************************************
271  * Open: initialize and create stuff
272  *****************************************************************************/
273 static int Open( vlc_object_t *p_this )
274 {
275     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
276     services_discovery_sys_t *p_sys  = (services_discovery_sys_t *)
277                                 malloc( sizeof( services_discovery_sys_t ) );
278
279     playlist_view_t     *p_view;
280     char                *psz_addr, *psz_charset;
281     vlc_value_t         val;
282
283     p_sys->i_timeout = var_CreateGetInteger( p_sd, "sap-timeout" );
284
285     vlc_current_charset( &psz_charset );
286     p_sys->iconvHandle = vlc_iconv_open( psz_charset, "UTF-8" );
287     free( psz_charset );
288     if( p_sys->iconvHandle == (vlc_iconv_t)(-1) )
289     {
290         msg_Err( p_sd, "unable to perform characters conversion" );
291         return VLC_EGENERIC;
292     }
293
294     p_sd->pf_run = Run;
295     p_sd->p_sys  = p_sys;
296
297     p_sys->pi_fd = NULL;
298     p_sys->i_fd = 0;
299
300     p_sys->b_strict = var_CreateGetInteger( p_sd, "sap-strict");
301     p_sys->b_parse = var_CreateGetInteger( p_sd, "sap-parse" );
302
303     if( var_CreateGetInteger( p_sd, "sap-cache" ) )
304     {
305         CacheLoad( p_sd );
306     }
307
308     if( var_CreateGetInteger( p_sd, "sap-ipv4" ) )
309     {
310         InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT );
311         InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT );
312         InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT );
313         InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT );
314     }
315     if( var_CreateGetInteger( p_sd, "sap-ipv6" ) )
316     {
317         char psz_address[] = SAP_V6_1"0"SAP_V6_2;
318         const char *c_scope;
319
320         for( c_scope = ipv6_scopes; *c_scope; c_scope++ )
321         {
322             psz_address[sizeof(SAP_V6_1) - 1] = *c_scope;
323             InitSocket( p_sd, psz_address, SAP_PORT );
324         }
325     }
326
327     psz_addr = var_CreateGetString( p_sd, "sap-addr" );
328     if( psz_addr && *psz_addr )
329     {
330         InitSocket( p_sd, psz_addr, SAP_PORT );
331     }
332
333     if( p_sys->i_fd == 0 )
334     {
335         msg_Err( p_sd, "unable to read on any address" );
336         return VLC_EGENERIC;
337     }
338
339     /* Create our playlist node */
340     p_sys->p_playlist = (playlist_t *)vlc_object_find( p_sd,
341                                                        VLC_OBJECT_PLAYLIST,
342                                                        FIND_ANYWHERE );
343     if( !p_sys->p_playlist )
344     {
345         msg_Warn( p_sd, "unable to find playlist, cancelling SAP listening");
346         return VLC_EGENERIC;
347     }
348
349     p_view = playlist_ViewFind( p_sys->p_playlist, VIEW_CATEGORY );
350     p_sys->p_node = playlist_NodeCreate( p_sys->p_playlist, VIEW_CATEGORY,
351                                          _("SAP"), p_view->p_root );
352     p_sys->p_node->i_flags |= PLAYLIST_RO_FLAG;
353     p_sys->p_node->i_flags =~ PLAYLIST_SKIP_FLAG;
354     val.b_bool = VLC_TRUE;
355     var_Set( p_sys->p_playlist, "intf-change", val );
356
357     p_sys->i_announces = 0;
358     p_sys->pp_announces = NULL;
359
360     return VLC_SUCCESS;
361 }
362
363 /*****************************************************************************
364  * OpenDemux: initialize and create stuff
365  *****************************************************************************/
366 static int OpenDemux( vlc_object_t *p_this )
367 {
368     demux_t *p_demux = (demux_t *)p_this;
369     uint8_t *p_peek;
370     int i_max_sdp = 1024;
371     int i_sdp = 0;
372     char *psz_sdp = NULL;
373     sdp_t *p_sdp = NULL;
374
375     /* Probe for SDP */
376     if( p_demux->s )
377     {
378         if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 ) return VLC_EGENERIC;
379
380         if( strncmp( (char*)p_peek, "v=0\r\n", 5 ) &&
381             strncmp( (char*)p_peek, "v=0\n", 4 ) &&
382             ( p_peek[0] < 'a' || p_peek[0] > 'z' || p_peek[1] != '=' ) )
383         {
384             return VLC_EGENERIC;
385         }
386     }
387
388     psz_sdp = (char *)malloc( i_max_sdp );
389     if( !psz_sdp ) return VLC_EGENERIC;
390
391     /* Gather the complete sdp file */
392     for( ;; )
393     {
394         int i_read = stream_Read( p_demux->s,
395                                   &psz_sdp[i_sdp], i_max_sdp - i_sdp - 1 );
396
397         if( i_read < 0 )
398         {
399             msg_Err( p_demux, "failed to read SDP" );
400             goto error;
401         }
402
403         i_sdp += i_read;
404
405         if( i_read < i_max_sdp - i_sdp - 1 )
406         {
407             psz_sdp[i_sdp] = '\0';
408             break;
409         }
410
411         i_max_sdp += 1000;
412         psz_sdp = (uint8_t*)realloc( psz_sdp, i_max_sdp );
413     }
414
415     p_sdp = ParseSDP( VLC_OBJECT(p_demux), psz_sdp );
416
417     if( !p_sdp )
418     {
419         msg_Warn( p_demux, "invalid SDP");
420         goto error;
421     }
422
423     if( p_sdp->i_media > 1 )
424     {
425         goto error;
426     }
427
428     if( ParseConnection( VLC_OBJECT( p_demux ), p_sdp ) )
429     {
430         p_sdp->psz_uri = NULL;
431     }
432     if( p_sdp->i_media_type != 33 && p_sdp->i_media_type != 32 &&
433         p_sdp->i_media_type != 14 )
434         goto error;
435
436     if( p_sdp->psz_uri == NULL ) goto error;
437
438     p_demux->p_sys = (demux_sys_t *)malloc( sizeof(demux_sys_t) );
439     p_demux->p_sys->p_sdp = p_sdp;
440     p_demux->pf_control = Control;
441     p_demux->pf_demux = Demux;
442
443     free( psz_sdp );
444     return VLC_SUCCESS;
445
446 error:
447     free( psz_sdp );
448     if( p_sdp ) FreeSDP( p_sdp );
449     stream_Seek( p_demux->s, 0 );
450     return VLC_EGENERIC;    
451 }
452
453 /*****************************************************************************
454  * Close:
455  *****************************************************************************/
456 static void Close( vlc_object_t *p_this )
457 {
458     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
459     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
460
461     int i;
462
463     for( i = p_sys->i_fd-1 ; i >= 0 ; i-- )
464     {
465         net_Close( p_sys->pi_fd[i] );
466     }
467     FREE( p_sys->pi_fd );
468
469     if( config_GetInt( p_sd, "sap-cache" ) )
470     {
471         CacheSave( p_sd );
472     }
473
474     for( i = p_sys->i_announces  - 1;  i>= 0; i-- )
475     {
476         RemoveAnnounce( p_sd, p_sys->pp_announces[i] );
477     }
478     FREE( p_sys->pp_announces );
479
480     if( p_sys->p_playlist )
481     {
482         playlist_NodeDelete( p_sys->p_playlist, p_sys->p_node, VLC_TRUE,
483                              VLC_TRUE );
484         vlc_object_release( p_sys->p_playlist );
485     }
486
487     vlc_iconv_close( p_sys->iconvHandle );
488
489     free( p_sys );
490 }
491
492 /*****************************************************************************
493  * CloseDemux: Close the demuxer
494  *****************************************************************************/
495 static void CloseDemux( vlc_object_t *p_this )
496 {
497
498 }
499
500 /*****************************************************************************
501  * Run: main SAP thread
502  *****************************************************************************
503  * Listens to SAP packets, and sends them to packet_handle
504  *****************************************************************************/
505 #define MAX_SAP_BUFFER 5000
506
507 static void Run( services_discovery_t *p_sd )
508 {
509     int i;
510
511     /* read SAP packets */
512     while( !p_sd->b_die )
513     {
514         int i_read;
515         uint8_t p_buffer[MAX_SAP_BUFFER+1];
516
517         i_read = net_Select( p_sd, p_sd->p_sys->pi_fd, NULL,
518                              p_sd->p_sys->i_fd, p_buffer,
519                              MAX_SAP_BUFFER, 500000 );
520
521         /* Check for items that need deletion */
522         for( i = 0; i < p_sd->p_sys->i_announces; i++ )
523         {
524             mtime_t i_timeout = ( mtime_t ) 1000000 * p_sd->p_sys->i_timeout;
525
526             if( mdate() - p_sd->p_sys->pp_announces[i]->i_last > i_timeout )
527             {
528                 struct sap_announce_t *p_announce;
529                 p_announce = p_sd->p_sys->pp_announces[i];
530
531                 /* Remove the playlist item */
532                 playlist_LockDelete( p_sd->p_sys->p_playlist,
533                                      p_announce->i_item_id );
534
535                 /* Remove the sap_announce from the array */
536                 REMOVE_ELEM( p_sd->p_sys->pp_announces,
537                            p_sd->p_sys->i_announces, i );
538
539                 free( p_announce );
540             }
541         }
542
543         /* Minimum length is > 6 */
544         if( i_read <= 6 )
545         {
546             if( i_read < 0 )
547             {
548                 msg_Warn( p_sd, "socket read error" );
549             }
550             continue;
551         }
552
553         p_buffer[i_read] = '\0';
554
555         /* Parse the packet */
556         ParseSAP( p_sd, p_buffer, i_read );
557     }
558 }
559
560 /**********************************************************************
561  * Demux: reads and demuxes data packets
562  * Return -1 if error, 0 if EOF, 1 else
563  **********************************************************************/
564 static int Demux( demux_t *p_demux )
565 {
566     sdp_t *p_sdp = p_demux->p_sys->p_sdp;
567     playlist_t *p_playlist;
568
569     p_playlist = (playlist_t *)vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
570                                                FIND_ANYWHERE );
571
572     p_playlist->status.p_item->i_flags |= PLAYLIST_DEL_FLAG;
573
574     playlist_Add( p_playlist, p_sdp->psz_uri, p_sdp->psz_sessionname,
575                  PLAYLIST_APPEND, PLAYLIST_END );
576
577     vlc_object_release( p_playlist );
578     if( p_sdp ) FreeSDP( p_sdp );
579
580     return VLC_SUCCESS;
581 }
582
583 static int Control( demux_t *p_demux, int i_query, va_list args )
584 {
585     return VLC_EGENERIC;
586 }
587
588 /**************************************************************
589  * Local functions
590  **************************************************************/
591
592 /* i_read is at least > 6 */
593 static int ParseSAP( services_discovery_t *p_sd, uint8_t *p_buffer, int i_read )
594 {
595     int                 i_version, i_address_type, i_hash, i;
596     uint8_t             *psz_sdp;
597     uint8_t             *psz_initial_sdp;
598     sdp_t               *p_sdp;
599     vlc_bool_t          b_compressed;
600     vlc_bool_t          b_need_delete = VLC_FALSE;
601 #ifdef HAVE_ZLIB_H
602     int                 i_decompressed_size;
603     uint8_t             *p_decompressed_buffer;
604 #endif
605     uint8_t             *psz_foo;
606
607     /* First, check the sap announce is correct */
608     i_version = p_buffer[0] >> 5;
609     if( i_version != 1 )
610     {
611        msg_Dbg( p_sd, "strange sap version %d found", i_version );
612     }
613
614     i_address_type = p_buffer[0] & 0x10;
615
616     if( (p_buffer[0] & 0x08) != 0 )
617     {
618         msg_Dbg( p_sd, "reserved bit incorrectly set" );
619         return VLC_EGENERIC;
620     }
621
622     if( (p_buffer[0] & 0x04) != 0 )
623     {
624         msg_Dbg( p_sd, "session deletion packet" );
625         b_need_delete = VLC_TRUE;
626     }
627
628     if( p_buffer[0] & 0x02  )
629     {
630         msg_Dbg( p_sd, "encrypted packet, unsupported" );
631         return VLC_EGENERIC;
632     }
633
634     b_compressed = p_buffer[0] & 0x01;
635
636     i_hash = ( p_buffer[2] << 8 ) + p_buffer[3];
637
638     if( p_sd->p_sys->b_strict && i_hash == 0 )
639     {
640         msg_Dbg( p_sd, "strict mode, discarding announce with null id hash");
641         return VLC_EGENERIC;
642     }
643
644     psz_sdp  = &p_buffer[4];
645     psz_initial_sdp = psz_sdp;
646
647     if( i_address_type == 0 ) /* ipv4 source address */
648     {
649         psz_sdp += 4;
650         if( i_read <= 9 )
651         {
652             msg_Warn( p_sd, "too short SAP packet\n" );
653             return VLC_EGENERIC;
654         }
655     }
656     else /* ipv6 source address */
657     {
658         psz_sdp += 16;
659         if( i_read <= 21 )
660         {
661             msg_Warn( p_sd, "too short SAP packet\n" );
662             return VLC_EGENERIC;
663         }
664     }
665
666     if( b_compressed )
667     {
668 #ifdef HAVE_ZLIB_H
669         i_decompressed_size = Decompress( psz_sdp,
670                    &p_decompressed_buffer,i_read - ( psz_sdp - p_buffer ) );
671         if( i_decompressed_size > 0 && i_decompressed_size < MAX_SAP_BUFFER )
672         {
673             memcpy( psz_sdp, p_decompressed_buffer, i_decompressed_size );
674             psz_sdp[i_decompressed_size] = '\0';
675             free( p_decompressed_buffer );
676         }
677 #else
678         msg_Warn( p_sd, "Ignoring compressed sap packet" );
679         return VLC_EGENERIC;
680 #endif
681     }
682
683     /* Add the size of authentification info */
684     if( i_read < p_buffer[1] + (psz_sdp - psz_initial_sdp ) )
685     {
686         msg_Warn( p_sd, "too short SAP packet\n");
687         return VLC_EGENERIC;
688     }
689     psz_sdp += p_buffer[1];
690     psz_foo = psz_sdp;
691
692     /* Skip payload type */
693     /* Handle announces without \0 between SAP and SDP */
694     while( *psz_sdp != '\0' && ( psz_sdp[0] != 'v' && psz_sdp[1] != '=' ) )
695     {
696         if( psz_sdp - psz_initial_sdp >= i_read - 5 )
697         {
698             msg_Warn( p_sd, "empty SDP ?");
699         }
700         psz_sdp++;
701     }
702
703     if( *psz_sdp == '\0' )
704     {
705         psz_sdp++;
706     }
707     if( psz_sdp != psz_foo && strcasecmp( psz_foo, "application/sdp" ) )
708     {
709         msg_Dbg( p_sd, "unhandled content type: %s", psz_foo );        
710     }
711     if( psz_sdp -p_buffer >= i_read )
712     {
713         msg_Warn( p_sd, "package without content" );
714         return VLC_EGENERIC;
715     }
716
717     /* Parse SDP info */
718     p_sdp = ParseSDP( VLC_OBJECT(p_sd), psz_sdp );
719
720     if( p_sdp == NULL )
721     {
722         return VLC_EGENERIC;
723     }
724
725     /* Decide whether we should add a playlist item for this SDP */
726     /* Parse connection information (c= & m= ) */
727     if( ParseConnection( VLC_OBJECT(p_sd), p_sdp ) )
728     {
729         p_sdp->psz_uri = NULL;
730     }
731
732     /* Multi-media or no-parse -> pass to LIVE.COM */
733     if( p_sdp->i_media > 1 || ( p_sdp->i_media_type != 14 &&
734                                 p_sdp->i_media_type != 32 &&
735                                 p_sdp->i_media_type != 33) ||
736         p_sd->p_sys->b_parse == VLC_FALSE )
737     {
738         if( p_sdp->psz_uri ) free( p_sdp->psz_uri );
739         asprintf( &p_sdp->psz_uri, "sdp://%s", p_sdp->psz_sdp );
740     }
741
742     if( p_sdp->psz_uri == NULL ) return VLC_EGENERIC;
743
744     for( i = 0 ; i< p_sd->p_sys->i_announces ; i++ )
745     {
746         /* FIXME: slow */
747         /* FIXME: we create a new announce each time the sdp changes */
748         if( IsSameSession( p_sd->p_sys->pp_announces[i]->p_sdp, p_sdp ) )
749         {
750             if( b_need_delete )
751             {
752                 RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i]);
753                 return VLC_SUCCESS;
754             }
755             else
756             {
757                 p_sd->p_sys->pp_announces[i]->i_last = mdate();
758                 FreeSDP( p_sdp );
759                 return VLC_SUCCESS;
760             }
761         }
762     }
763     /* Add item */
764     if( p_sdp->i_media > 1 )
765     {
766         msg_Dbg( p_sd, "passing to LIVE.COM" );
767     }
768
769     CreateAnnounce( p_sd, i_hash, p_sdp );
770
771     return VLC_SUCCESS;
772 }
773
774 sap_announce_t *CreateAnnounce( services_discovery_t *p_sd, uint16_t i_hash,
775                                 sdp_t *p_sdp )
776 {
777     playlist_item_t     *p_item, *p_child;
778     char                *psz_value;
779     sap_announce_t *p_sap = (sap_announce_t *)malloc(
780                                         sizeof(sap_announce_t ) );
781
782     psz_value = convert_from_utf8( p_sd, p_sdp->psz_sessionname );
783     if( p_sap == NULL || psz_value == NULL )
784     {
785         FREE( p_sap );
786         FREE( psz_value );
787         return NULL;
788     }
789     p_sap->i_last = mdate();
790     p_sap->i_hash = i_hash;
791     p_sap->p_sdp = p_sdp;
792     p_sap->i_item_id = -1;
793
794     /* Create the playlist item here */
795     p_item = playlist_ItemNew( p_sd, p_sap->p_sdp->psz_uri, psz_value );
796     free( psz_value );
797
798     if( !p_item )
799     {
800         free( p_sap );
801         return NULL;
802     }
803
804     psz_value = GetAttribute( p_sap->p_sdp, "tool" );
805     if( psz_value != NULL )
806     {
807         vlc_input_item_AddInfo( &p_item->input, _("Session"),
808                                 _("Tool"), psz_value );
809     }
810     if( strcmp( p_sdp->psz_username, "-" ) )
811     {
812         vlc_input_item_AddInfo( &p_item->input, _("Session"),
813                                 _("User"), p_sdp->psz_username );
814     }
815
816     psz_value = GetAttribute( p_sap->p_sdp, "x-plgroup" );
817
818     if( psz_value == NULL )
819     {
820         psz_value = GetAttribute( p_sap->p_sdp, "plgroup" );
821     }
822
823     if( psz_value != NULL )
824     {
825         char *psz_grp = convert_from_utf8( p_sd, psz_value );
826
827         if( psz_grp != NULL )
828         {
829             p_child = playlist_ChildSearchName( p_sd->p_sys->p_node,
830                                                 psz_grp );
831
832             if( p_child == NULL )
833             {
834                 p_child = playlist_NodeCreate( p_sd->p_sys->p_playlist,
835                                                VIEW_CATEGORY, psz_grp,
836                                                p_sd->p_sys->p_node );
837                 p_child->i_flags =~ PLAYLIST_SKIP_FLAG;
838             }
839             free( psz_grp );
840         }
841         else
842         {
843             msg_Err( p_sd, "out of memory");
844             free( p_sap );
845             return NULL;
846         }
847     }
848     else
849     {
850         p_child = p_sd->p_sys->p_node;
851     }
852
853     p_item->i_flags &= ~PLAYLIST_SKIP_FLAG;
854     p_item->i_flags &= ~PLAYLIST_SAVE_FLAG;
855
856     playlist_NodeAddItem( p_sd->p_sys->p_playlist, p_item, VIEW_CATEGORY,
857                               p_child, PLAYLIST_APPEND, PLAYLIST_END );
858
859     p_sap->i_item_id = p_item->input.i_id;
860
861     TAB_APPEND( p_sd->p_sys->i_announces,
862                 p_sd->p_sys->pp_announces, p_sap );
863
864     return p_sap;
865 }
866
867 static char *GetAttribute( sdp_t *p_sdp, const char *psz_search )
868 {
869     int i;
870
871     for( i = 0 ; i< p_sdp->i_attributes; i++ )
872     {
873         if( !strncmp( p_sdp->pp_attributes[i]->psz_field, psz_search,
874                       strlen( p_sdp->pp_attributes[i]->psz_field ) ) )
875         {
876             return p_sdp->pp_attributes[i]->psz_value;
877         }
878     }
879     return NULL;
880 }
881
882
883 /* Fill p_sdp->psz_uri */
884 static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
885 {
886     char *psz_eof;
887     char *psz_parse;
888     char *psz_uri = NULL;
889     char *psz_proto = NULL;
890     int i_port = 0;
891
892     /* Parse c= field */
893     if( p_sdp->psz_connection )
894     {
895         psz_parse = p_sdp->psz_connection;
896
897         psz_eof = strchr( psz_parse, ' ' );
898
899         if( psz_eof )
900         {
901             *psz_eof = '\0';
902             psz_parse = psz_eof + 1;
903         }
904         else
905         {
906             msg_Warn( p_obj, "unable to parse c field (1)");
907             return VLC_EGENERIC;
908         }
909
910         psz_eof = strchr( psz_parse, ' ' );
911
912         if( psz_eof )
913         {
914             *psz_eof = '\0';
915             if( !strncmp( psz_parse, "IP4", 3 ) )
916             {
917                 p_sdp->i_in = 4;
918             }
919             else if( !strncmp( psz_parse, "IP6", 3 ) )
920             {
921                 p_sdp->i_in = 6;
922             }
923             else
924             {
925                 p_sdp->i_in = 0;
926             }
927             psz_parse = psz_eof + 1;
928         }
929         else
930         {
931             msg_Warn( p_obj, "unable to parse c field (2)");
932             return VLC_EGENERIC;
933         }
934
935         psz_eof = strchr( psz_parse, '/' );
936
937         if( psz_eof )
938         {
939             *psz_eof = 0;
940         }
941         else
942         {
943             msg_Dbg( p_obj, "incorrect c field, %s", p_sdp->psz_connection );
944         }
945         psz_uri = strdup( psz_parse );
946
947     }
948
949     /* Parse m= field */
950     if( p_sdp->psz_media )
951     {
952         psz_parse = p_sdp->psz_media;
953
954         psz_eof = strchr( psz_parse, ' ' );
955
956         if( psz_eof )
957         {
958             *psz_eof = '\0';
959
960             if( strncmp( psz_parse, "audio", 5 )  &&
961                 strncmp( psz_parse, "video",5 ) )
962             {
963                 msg_Warn( p_obj, "unhandled media type -%s-", psz_parse );
964                 FREE( psz_uri );
965                 return VLC_EGENERIC;
966             }
967
968             psz_parse = psz_eof + 1;
969         }
970         else
971         {
972             msg_Warn( p_obj, "unable to parse m field (1)");
973             FREE( psz_uri );
974             return VLC_EGENERIC;
975         }
976
977         psz_eof = strchr( psz_parse, ' ' );
978
979         if( psz_eof )
980         {
981             *psz_eof = '\0';
982
983             /* FIXME : multiple port ! */
984             i_port = atoi( psz_parse );
985
986             if( i_port <= 0 || i_port >= 65536 )
987             {
988                 msg_Warn( p_obj, "invalid transport port %i", i_port );
989             }
990
991             psz_parse = psz_eof + 1;
992         }
993         else
994         {
995             msg_Warn( p_obj, "unable to parse m field (2)");
996             FREE( psz_uri );
997             return VLC_EGENERIC;
998         }
999
1000         psz_eof = strchr( psz_parse, ' ' );
1001
1002         if( psz_eof )
1003         {
1004             *psz_eof = '\0';
1005             psz_proto = strdup( psz_parse );
1006
1007             psz_parse = psz_eof + 1;
1008             p_sdp->i_media_type = atoi( psz_parse );
1009             
1010         }
1011         else
1012         {
1013             msg_Dbg( p_obj, "incorrect m field, %s", p_sdp->psz_media );
1014             p_sdp->i_media_type = 33;
1015             psz_proto = strdup( psz_parse );
1016         }
1017     }
1018
1019     if( psz_proto && !strncmp( psz_proto, "RTP/AVP", 7 ) )
1020     {
1021         free( psz_proto );
1022         psz_proto = strdup( "rtp" );
1023     }
1024     if( psz_proto && !strncasecmp( psz_proto, "UDP", 3 ) )
1025     {
1026         free( psz_proto );
1027         psz_proto = strdup( "udp" );
1028     }
1029
1030     /* FIXME: HTTP support */
1031
1032     if( i_port == 0 )
1033     {
1034         i_port = 1234;
1035     }
1036
1037     if( net_AddressIsMulticast( p_obj, psz_uri ) )
1038     {
1039         asprintf( &p_sdp->psz_uri, "%s://@%s:%i", psz_proto, psz_uri, i_port );
1040     }
1041     else
1042     {
1043         asprintf( &p_sdp->psz_uri, "%s://%s:%i", psz_proto, 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
1249 static char *convert_from_utf8( struct services_discovery_t *p_sd,
1250                                 char *psz_unicode )
1251 {
1252     char *psz_local, *psz_in, *psz_out;
1253     size_t ret, i_in, i_out;
1254     vlc_bool_t b_warn = VLC_FALSE;
1255
1256     if( psz_unicode == NULL )
1257         return NULL;
1258
1259     psz_in = psz_unicode;
1260     i_in = strlen( psz_unicode );
1261
1262 #ifndef MB_CUR_MAX
1263     i_out = 6 * i_in;
1264 #else
1265     i_out = MB_CUR_MAX * i_in;
1266 #endif
1267     psz_local = malloc( i_out + 1 );
1268     if( psz_local == NULL )
1269         return NULL;
1270     psz_out = psz_local;
1271
1272     do
1273     {
1274         ret = vlc_iconv( p_sd->p_sys->iconvHandle,
1275                          &psz_in, &i_in, &psz_out, &i_out);
1276         if( i_in )
1277         {
1278             *psz_in = '?';
1279             b_warn = VLC_TRUE;
1280         }
1281         else
1282         if( ret == (size_t)(-1) )
1283         {
1284             msg_Err( p_sd, "character conversion failure : %s",
1285                      strerror( errno ) );
1286             free( psz_local );
1287             return NULL;
1288         }
1289     }
1290     while( i_in );
1291
1292     if( b_warn )
1293         msg_Warn( p_sd, "in \"%s\" : %s", psz_unicode, 
1294                   strerror( errno ) );
1295
1296     *psz_out = '\0';
1297     return psz_local;
1298 }
1299
1300 static int InitSocket( services_discovery_t *p_sd, char *psz_address,
1301                        int i_port )
1302 {
1303     int i_fd = net_OpenUDP( p_sd, psz_address, i_port, "", 0 );
1304
1305     if( i_fd != -1 )
1306     {
1307         net_StopSend( i_fd );
1308         INSERT_ELEM(  p_sd->p_sys->pi_fd, p_sd->p_sys->i_fd,
1309                       p_sd->p_sys->i_fd, i_fd );
1310         return VLC_SUCCESS;
1311     }
1312
1313     return VLC_EGENERIC;
1314 }
1315
1316 #ifdef HAVE_ZLIB_H
1317 static int Decompress( unsigned char *psz_src, unsigned char **_dst, int i_len )
1318 {
1319     int i_result, i_dstsize, n;
1320     unsigned char *psz_dst;
1321     z_stream d_stream;
1322
1323     d_stream.zalloc = (alloc_func)0;
1324     d_stream.zfree = (free_func)0;
1325     d_stream.opaque = (voidpf)0;
1326
1327     i_result = inflateInit(&d_stream);
1328     if( i_result != Z_OK )
1329     {
1330         printf( "inflateInit() failed. Result: %d\n", i_result );
1331         return( -1 );
1332     }
1333 #if 0
1334     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
1335     i_position = p_playlist->i_index;
1336
1337     /* Gather the complete sdp file */
1338     for( ;; )
1339     {
1340         int i_read = stream_Read( p_demux->s, &p_sdp[i_sdp], i_sdp_max - i_sdp - 1 );
1341 #endif
1342     d_stream.next_in = (Bytef *)psz_src;
1343     d_stream.avail_in = i_len;
1344     n = 0;
1345
1346     psz_dst = NULL;
1347
1348     do
1349     {
1350         n++;
1351         psz_dst = (unsigned char *)realloc( psz_dst, n * 1000 );
1352         d_stream.next_out = (Bytef *)&psz_dst[(n - 1) * 1000];
1353         d_stream.avail_out = 1000;
1354
1355         i_result = inflate(&d_stream, Z_NO_FLUSH);
1356         if( ( i_result != Z_OK ) && ( i_result != Z_STREAM_END ) )
1357         {
1358             printf( "Zlib decompression failed. Result: %d\n", i_result );
1359             return( -1 );
1360         }
1361     }
1362     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
1363            ( i_result != Z_STREAM_END ) );
1364
1365     i_dstsize = d_stream.total_out;
1366     inflateEnd( &d_stream );
1367
1368     *_dst = (unsigned char *)realloc( psz_dst, i_dstsize );
1369
1370     return i_dstsize;
1371 }
1372 #endif
1373
1374
1375 static void FreeSDP( sdp_t *p_sdp )
1376 {
1377     int i;
1378     FREE( p_sdp->psz_sdp );
1379     FREE( p_sdp->psz_sessionname );
1380     FREE( p_sdp->psz_connection );
1381     FREE( p_sdp->psz_media );
1382     FREE( p_sdp->psz_uri );
1383     FREE( p_sdp->psz_username );
1384     FREE( p_sdp->psz_network_type );
1385
1386     FREE( p_sdp->psz_address );
1387     FREE( p_sdp->psz_address_type );
1388
1389     for( i= p_sdp->i_attributes - 1; i >= 0 ; i-- )
1390     {
1391         struct attribute_t *p_attr = p_sdp->pp_attributes[i];
1392         FREE( p_sdp->pp_attributes[i]->psz_field );
1393         FREE( p_sdp->pp_attributes[i]->psz_value );
1394         REMOVE_ELEM( p_sdp->pp_attributes, p_sdp->i_attributes, i);
1395         FREE( p_attr );
1396     }
1397     free( p_sdp );
1398 }
1399
1400 static int RemoveAnnounce( services_discovery_t *p_sd,
1401                            sap_announce_t *p_announce )
1402 {
1403     int i;
1404
1405     if( p_announce->p_sdp ) FreeSDP( p_announce->p_sdp );
1406
1407     if( p_announce->i_item_id > -1 )
1408     {
1409         playlist_LockDelete( p_sd->p_sys->p_playlist, p_announce->i_item_id );
1410     }
1411
1412     for( i = 0; i< p_sd->p_sys->i_announces; i++)
1413     {
1414         if( p_sd->p_sys->pp_announces[i] == p_announce )
1415         {
1416             REMOVE_ELEM( p_sd->p_sys->pp_announces, p_sd->p_sys->i_announces,
1417                          i);
1418             break;
1419         }
1420     }
1421
1422     free( p_announce );
1423
1424     return VLC_SUCCESS;
1425 }
1426
1427 static vlc_bool_t IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 )
1428 {
1429     /* A session is identified by
1430      * username, session_id, network type, address type and address */
1431     if( p_sdp1->psz_username && p_sdp2->psz_username &&
1432         p_sdp1->psz_network_type && p_sdp2->psz_network_type &&
1433         p_sdp1->psz_address_type && p_sdp2->psz_address_type &&
1434         p_sdp1->psz_address &&  p_sdp2->psz_address )
1435     {
1436         if(!strcmp( p_sdp1->psz_username , p_sdp2->psz_username ) &&
1437            !strcmp( p_sdp1->psz_network_type , p_sdp2->psz_network_type ) &&
1438            !strcmp( p_sdp1->psz_address_type , p_sdp2->psz_address_type ) &&
1439            !strcmp( p_sdp1->psz_address , p_sdp2->psz_address ) &&
1440            p_sdp1->i_session_id == p_sdp2->i_session_id )
1441         {
1442             return VLC_TRUE;
1443         }
1444         else
1445         {
1446             return VLC_FALSE;
1447         }
1448     }
1449     else
1450     {
1451         return VLC_FALSE;
1452     }
1453 }
1454
1455
1456 static void CacheLoad( services_discovery_t *p_sd )
1457 {
1458     msg_Warn( p_sd, "Cache not implemented") ;
1459 }
1460
1461 static void CacheSave( services_discovery_t *p_sd )
1462 {
1463     msg_Warn( p_sd, "Cache not implemented") ;
1464 }