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