Bug 5410 - Error in LookupFlags for .NET bindings
Summary: Error in LookupFlags for .NET bindings
Status: RESOLVED FIXED
Alias: None
Product: avahi
Classification: Unclassified
Component: libavahi (show other bugs)
Version: unspecified
Hardware: x86 (IA32) Linux (All)
: high normal
Assignee: Trent Lloyd
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-23 21:01 UTC by Patrick Aussems
Modified: 2006-01-09 13:59 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Patrick Aussems 2005-12-23 21:01:23 UTC
Description: When using the .NET bindings of avahi, if UseMulticast is set when
resolving a service the txt records are not returned

Origin: Error in the LookupFlags declaration

Fix:

Index: avahi-sharp/Client.cs
===================================================================
--- avahi-sharp/Client.cs       (revision 1046)
+++ avahi-sharp/Client.cs       (working copy)
@@ -86,7 +86,8 @@
     public enum LookupFlags {
         None = 0,
         UseWideArea = 1,
-        UseMulticast = 4,
+        UseMulticast = 2,
+        NoTxt = 4,
         NoAddress = 8
     }

Regards,

Patrick Aussems, DTI sa
Comment 1 Lennart Poettering 2006-01-10 08:59:15 UTC
commit r1068 cotains yor fix


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.