]> git.meshlink.io Git - catta/blob - avahi-common/domain.h
Split avahi-common/util.h into
[catta] / avahi-common / domain.h
1 #ifndef foodomainhfoo
2 #define foodimainhfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of avahi.
8  
9   avahi is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as
11   published by the Free Software Foundation; either version 2.1 of the
12   License, or (at your option) any later version.
13  
14   avahi is distributed in the hope that it will be useful, but WITHOUT
15   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17   Public License for more details.
18  
19   You should have received a copy of the GNU Lesser General Public
20   License along with avahi; if not, write to the Free Software
21   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22   USA.
23 ***/
24
25 #include <inttypes.h>
26 #include <sys/types.h>
27
28 #include <avahi-common/cdecl.h>
29
30 AVAHI_C_DECL_BEGIN
31
32 char *avahi_normalize_name(const char *s); /* avahi_free() the result! */
33 char *avahi_get_host_name(void); /* avahi_free() the result! */
34
35 int avahi_domain_equal(const char *a, const char *b);
36 int avahi_binary_domain_cmp(const char *a, const char *b);
37
38 /* Read the first label from the textual domain name *name, unescape
39  * it and write it to dest, *name is changed to point to the next label*/
40 char *avahi_unescape_label(const char **name, char *dest, size_t size);
41
42 /* Escape the domain name in *src and write it to *ret_name */
43 char *avahi_escape_label(const uint8_t* src, size_t src_length, char **ret_name, size_t *ret_size);
44
45 unsigned avahi_strhash(const char *p);
46 unsigned avahi_domain_hash(const char *s);
47
48 int avahi_valid_service_type(const char *t);
49 int avahi_valid_domain_name(const char *t);
50 int avahi_valid_service_name(const char *t);
51 int avahi_valid_host_name(const char *t);
52
53 char *avahi_strup(char *s);
54 char *avahi_strdown(char *s);
55
56 AVAHI_C_DECL_END
57
58 #endif