From 0d787cfca3b6e2c0755a54ca732a85e15756aa57 Mon Sep 17 00:00:00 2001 From: James Willcox Date: Sun, 6 Nov 2005 16:25:05 +0000 Subject: add new error codes and publish flags git-svn-id: file:///home/lennart/svn/public/avahi/trunk@936 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-sharp/ClientException.cs | 9 +++++++-- avahi-sharp/EntryGroup.cs | 4 +++- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'avahi-sharp') diff --git a/avahi-sharp/ClientException.cs b/avahi-sharp/ClientException.cs index 3ee0cab..11c4e63 100644 --- a/avahi-sharp/ClientException.cs +++ b/avahi-sharp/ClientException.cs @@ -49,7 +49,7 @@ namespace Avahi AccessDenied = -20, InvalidOperation = -21, DBusError = -22, - NotConnected = -23, + Disconnected = -23, NoMemory = -24, InvalidObject = -25, NoDaemon = -26, @@ -71,7 +71,12 @@ namespace Avahi DnsYxRrSet = -42, DnsNxRrSet = -43, DnsNotAuth = -44, - DnsNotZone = -45 + DnsNotZone = -45, + InvalidRData = -46, + InvalidDnsClass = -47, + InvalidDnsType = -48, + NotSupported = -49, + NotPermitted = -50 } public delegate void ErrorCodeHandler (object o, ErrorCode code); diff --git a/avahi-sharp/EntryGroup.cs b/avahi-sharp/EntryGroup.cs index 3f8a94c..a8744d0 100644 --- a/avahi-sharp/EntryGroup.cs +++ b/avahi-sharp/EntryGroup.cs @@ -35,7 +35,9 @@ namespace Avahi AllowMultiple = 8, NoReverse = 16, NoCookie = 32, - Update = 64 + Update = 64, + UseWideArea = 128, + UseMulticast = 256 } public enum EntryGroupState { -- cgit