From fbd822ec8fa4575a61e81e2ecf2c4e6f8266a0ff Mon Sep 17 00:00:00 2001 From: James Willcox Date: Sun, 25 Sep 2005 22:28:41 +0000 Subject: actually define the flags correctly git-svn-id: file:///home/lennart/svn/public/avahi/trunk@624 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-sharp/Client.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'avahi-sharp') diff --git a/avahi-sharp/Client.cs b/avahi-sharp/Client.cs index d9466bc..f5ba069 100644 --- a/avahi-sharp/Client.cs +++ b/avahi-sharp/Client.cs @@ -58,19 +58,19 @@ namespace Avahi [Flags] public enum LookupFlags { - None, - UseWideArea, - UseMulticast, - NoTxt, - NoAddress + None = 0, + UseWideArea = 1, + UseMulticast = 2, + NoTxt = 4, + NoAddress = 8 } [Flags] public enum LookupResultFlags { - None, - Cached, - WideArea, - Multicast + None = 0, + Cached = 1, + WideArea = 2, + Multicast = 4 } public class Client : IDisposable -- cgit