From: Fabian Deutsch Date: Fri, 21 Oct 2011 19:39:42 +0000 (-0700) Subject: avahi-gobject: add port argument to EntryGroup.add_service method X-Git-Tag: 0.14.1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6e309c372779602bff89fc3bced4bb54f5c243f;p=thirdparty%2Fvala.git avahi-gobject: add port argument to EntryGroup.add_service method --- diff --git a/vapi/avahi-gobject.vapi b/vapi/avahi-gobject.vapi index b453565ca..cba79f07d 100644 --- a/vapi/avahi-gobject.vapi +++ b/vapi/avahi-gobject.vapi @@ -277,7 +277,7 @@ namespace Avahi { public EntryGroupService add_service_strlist(string name, string type, uint16 port, ...) throws Error; [CCode(sentinel="")] public EntryGroupService add_service_full_strlist(Interface interface, Protocol protocol, PublishFlags flags, string name, string type, string domain, string host, uint16 port, ...) throws Error; - public EntryGroupService add_service(string name, string type, ...) throws Error; + public EntryGroupService add_service(string name, string type, uint16 port, ...) throws Error; public EntryGroupService add_service_full(Interface interface, Protocol protocol, PublishFlags flags, string name, string type, string domain, string host, uint16 port, ...) throws Error; public void add_record(PublishFlags flags, string name, uint16 type, uint32 ttl, char[] data) throws Error; public void add_record_full(Interface interface, Protocol protocol, PublishFlags flags, string name, uint16 class, uint16 type, uint32 ttl, char[] data) throws Error;