]> git.sesse.net Git - vlc/commitdiff
Don't attempt to listen to link-local scope SAP address because it doesn't work
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 1 Aug 2005 17:26:37 +0000 (17:26 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 1 Aug 2005 17:26:37 +0000 (17:26 +0000)
modules/services_discovery/sap.c

index 2bb084d5edbfbb6788fe942c8c5141fadd062174..f51e99b93aa269d9f1f8a04f9aa1298214fece33 100644 (file)
@@ -70,7 +70,8 @@
 /* Scope is inserted between them */
 #define SAP_V6_2 "::2:7FFE"
 /* See RFC3513 for list of valid scopes */
-static const char ipv6_scopes[] = "12456789ABCDE";
+/* FIXME: find a way to listen to link-local scope */
+static const char ipv6_scopes[] = "1456789ABCDE";
 
 
 /*****************************************************************************