]> git.meshlink.io Git - catta/blob - avahi-common/util.h
65252e3f1f55519adff65c86c610127c5bd59f60
[catta] / avahi-common / util.h
1 #ifndef fooutilhfoo
2 #define fooutilhfoo
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 <stdarg.h>
27 #include <sys/time.h>
28
29 #include <avahi-common/cdecl.h>
30
31 AVAHI_C_DECL_BEGIN
32
33 typedef int64_t AvahiUsec;
34
35 char *avahi_normalize_name(const char *s); /* avahi_free() the result! */
36 char *avahi_get_host_name(void); /* avahi_free() the result! */
37
38 int avahi_timeval_compare(const struct timeval *a, const struct timeval *b);
39 AvahiUsec avahi_timeval_diff(const struct timeval *a, const struct timeval *b);
40 struct timeval* avahi_timeval_add(struct timeval *a, AvahiUsec usec);
41
42 AvahiUsec avahi_age(const struct timeval *a);
43 struct timeval *avahi_elapse_time(struct timeval *tv, unsigned msec, unsigned jitter);
44
45 int avahi_set_cloexec(int fd);
46 int avahi_set_nonblock(int fd);
47 int avahi_wait_for_write(int fd);
48
49 int avahi_domain_equal(const char *a, const char *b);
50 int avahi_binary_domain_cmp(const char *a, const char *b);
51
52 void avahi_hexdump(const void *p, size_t size);
53
54 /* Read the first label from the textual domain name *name, unescape
55  * it and write it to dest, *name is changed to point to the next label*/
56 char *avahi_unescape_label(const char **name, char *dest, size_t size);
57
58 /* Escape the domain name in *src and write it to *ret_name */
59 char *avahi_escape_label(const uint8_t* src, size_t src_length, char **ret_name, size_t *ret_size);
60
61 unsigned avahi_strhash(const char *p);
62 unsigned avahi_domain_hash(const char *s);
63
64 char *avahi_format_mac_address(const uint8_t* mac, size_t size);
65
66 int avahi_valid_service_type(const char *t);
67 int avahi_valid_domain_name(const char *t);
68 int avahi_valid_service_name(const char *t);
69 int avahi_valid_host_name(const char *t);
70
71 char *avahi_strdown(char *s);
72 char *avahi_strup(char *s);
73
74 AVAHI_C_DECL_END
75
76 #endif