/usr/share/vala-0.14/vapi/avahi-client.vapi is in valac-0.14 0.14.2-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | /* avahi-common.vala
*
* Copyright (C) 2009 Sebastian Noack
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* As a special exception, if you use inline functions from this file, this
* file does not by itself cause the resulting executable to be covered by
* the GNU Lesser General Public License.
*
* Author:
* Sebastian Noack <sebastian.noack@gmail.com>
*/
[CCode(cprefix="Ga", lower_case_cprefix="ga_")]
namespace Avahi {
/* Network addresses */
[SimpleType]
[CCode(cheader_filename="avahi-common/address.h", cname="AvahiProtocol", cprefix="AVAHI_PROTO_", lower_case_cprefix="avahi_proto_")]
public enum Protocol {
INET,
INET6,
UNSPEC;
[CCode(cname="avahi_af_to_proto")]
public static Protocol from_af(int af);
public unowned string to_string();
public int to_af();
[CCode(cname="AVAHI_PROTO_VALID")]
public bool is_valid();
}
[SimpleType]
[CCode(cheader_filename="avahi-common/address.h", cname="AvahiIfIndex")]
public struct Interface {
[CCode(cname="AVAHI_IF_UNSPEC")]
public static Interface UNSPEC;
[CCode(cname="AVAHI_IF_VALID")]
public bool is_valid();
}
[CCode(cheader_filename="avahi-common/address.h", cname="AvahiAddress", cprefix="avahi_address_")]
public struct Address {
public Protocol proto;
[CCode(cname="AVAHI_ADDRESS_STR_MAX")]
public static size_t STR_MAX;
[CCode(cname="avahi_address_parse", instance_pos=-1)]
public Address.parse(string s, Protocol proto=Protocol.UNSPEC);
[CCode(cname="avahi_address_snprint", instance_pos=-1)]
public unowned string to_string(char[] dest=new char[STR_MAX]);
public int cmp(Address other);
}
/* Linked list of strings used for DNS TXT record data */
[CCode(cheader_filename="avahi-common/defs.h", cname="AVAHI_SERVICE_COOKIE_INVALID")]
public const uint32 SERVICE_COOKIE_INVALID;
[Compact]
[CCode(cheader_filename="avahi-common/strlst.h", cname="AvahiStringList", cprefix="avahi_string_list_", dup_function="avahi_string_list_copy", free_function="avahi_string_list_free")]
public class StringList {
public StringList next;
[CCode(array_length_cname="size")]
public char[] text;
public StringList(string? txt=null, ...);
public StringList.from_array(string[] array);
[ReturnsModifiedPointer()]
public void add(string text);
[ReturnsModifiedPointer()]
[PrintfFormat]
public void add_printf(string format, ...);
[ReturnsModifiedPointer()]
public void add_arbitrary(char[] text);
[ReturnsModifiedPointer()]
public void add_anonymous(size_t size);
[ReturnsModifiedPointer()]
public void add_many(...);
public string to_string();
public int equal(StringList other);
public StringList copy();
[ReturnsModifiedPointer()]
public void reverse();
public uint length();
public unowned StringList find(string key);
public bool get_pair(out string key, out char[] value);
[ReturnsModifiedPointer()]
public void add_pair(string key, string? value);
[ReturnsModifiedPointer()]
public void add_pair_arbitrary(string key, char[] value);
public uint32 get_service_cookie();
[CCode(cname="avahi_string_list_serialize")]
private size_t _serialize(char[] dest);
[CCode(cname="avahi_string_list_serialize_dup")]
public char[] serialize() {
char[] dest = new char[this.length() * 256];
dest.length = (int) _serialize(dest);
return dest;
}
[CCode(cname="avahi_string_list_parse")]
private static int _parse(char[] data, out StringList dest);
[CCode(cname="avahi_string_list_parse_dup")]
public static StringList parse(char[] data) throws Error {
StringList dest;
int errno = _parse(data, out dest);
if (errno < 0) {
var err = new Error.FAILURE(strerror(errno));
err.code = errno;
throw err;
}
return dest;
}
}
/* Domain name utility functions */
[CCode(cheader_filename="avahi-common/domain.h", lower_case_cprefix="avahi_")]
namespace Domain {
public const size_t DOMAIN_NAME_MAX;
public const size_t LABEL_MAX;
[CCode(cname="avahi_normalize_name_strdup")]
public string normalize_name(string s);
[CCode(cname="avahi_domain_equal")]
public bool equal(string a, string b);
[CCode(cname="avahi_domain_hash")]
public uint hash(string name);
public unowned string? get_type_from_subtype(string s);
public unowned string? unescape_label(ref unowned string name, char[] dest=new char[LABEL_MAX]);
[CCode(cname="avahi_escape_label")]
private string? _escape_label(char* src, size_t src_len, ref char* dest, ref size_t dest_len);
[CCode(cname="avahi_escape_label_dup")]
public string? escape_label(string s) {
size_t len = LABEL_MAX * 4;
char* dest = new char[len];
return _escape_label(s, s.length, ref dest, ref len);
}
[CCode(cname="avahi_service_name_join")]
private int _service_name_join(char* dest, size_t dest_len, string name, string type, string domain);
[CCode(cname="avahi_service_name_join_dup")]
public string service_name_join(string name, string type, string domain) throws Error {
char* dest = new char[DOMAIN_NAME_MAX];
int errno = _service_name_join(dest, DOMAIN_NAME_MAX, name, type, domain);
if (errno < 0) {
var err = new Error.FAILURE(strerror(errno));
err.code = errno;
throw err;
}
return (string) dest;
}
[CCode(cname="avahi_service_name_split")]
private int _service_name_split(string src, char* name, size_t name_len,
char* type, size_t type_len,
char* domain, size_t domain_len);
[CCode(cname="avahi_service_name_split_dup")]
public void service_name_split(string src, out string name, out string type, out string domain) throws Error {
name = (string) new char[LABEL_MAX];
type = (string) new char[DOMAIN_NAME_MAX];
domain = (string) new char[DOMAIN_NAME_MAX];
int errno = _service_name_split(src, name, LABEL_MAX,
type, DOMAIN_NAME_MAX,
domain, DOMAIN_NAME_MAX);
if (errno < 0) {
var err = new Error.FAILURE(strerror(errno));
err.code = errno;
throw err;
}
}
public bool is_valid_service_type_generic(string s);
public bool is_valid_service_type_strict(string s);
public bool is_valid_service_subtype(string s);
public bool is_valid_domain_name(string s);
public bool is_valid_service_name(string s);
public bool is_valid_host_name(string s);
public bool is_valid_fqdn(string s);
[CCode(cheader_filename="avahi-common/address.h")]
public unowned string reverse_lookup_name(Address addr, char[] dest=new char[DOMAIN_NAME_MAX]);
}
[CCode(cheader_filename="avahi-common/alternative.h", lower_case_cprefix="avahi_alternative_")]
namespace Alternative {
public string host_name(string s);
public string service_name(string s);
}
/* Entry group */
[Flags]
[CCode(cheader_filename="avahi-common/defs.h", cname="AvahiPublishFlags", cfrefix="AVAHI_PUBLISH_")]
public enum PublishFlags {
UNIQUE,
NO_PROBE,
NO_ANNOUNCE,
ALLOW_MULTIPLE,
NO_REVERSE,
NO_COOKIE,
UPDATE,
USE_WIDE_AREA,
USE_MULTICAST
}
}
|