]> git.meshlink.io Git - catta/blob - avahi-core/domain-util.c
* replace AF_UNSPEC by AVAHI_PROTO_UNSPEC in client-test.c
[catta] / avahi-core / domain-util.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <assert.h>
28 #include <string.h>
29 #include <unistd.h>
30
31 #include <avahi-common/malloc.h>
32
33 #include "domain-util.h"
34
35 char *avahi_get_host_name(char *ret_s, size_t size) {
36 #ifdef HOST_NAME_MAX
37     char t[HOST_NAME_MAX];
38 #else
39     char t[256];
40 #endif
41     
42     assert(ret_s);
43     assert(size > 0);
44     
45     gethostname(t, sizeof(t));
46     t[sizeof(t)-1] = 0;
47     
48     return avahi_normalize_name(t, ret_s, size);
49 }
50
51 char *avahi_get_host_name_strdup(void) {
52     char t[AVAHI_DOMAIN_NAME_MAX];
53
54     if (!(avahi_get_host_name(t, sizeof(t))))
55         return NULL;
56
57     return avahi_strdup(t);
58 }
59
60 int avahi_binary_domain_cmp(const char *a, const char *b) {
61     assert(a);
62     assert(b);
63
64     if (a == b)
65         return 0;
66
67     for (;;) {
68         char ca[AVAHI_LABEL_MAX], cb[AVAHI_LABEL_MAX], *p;
69         int r;
70
71         p = avahi_unescape_label(&a, ca, sizeof(ca));
72         assert(p);
73         p = avahi_unescape_label(&b, cb, sizeof(cb));
74         assert(p);
75
76         if ((r = strcmp(ca, cb)))
77             return r;
78         
79         if (!*a && !*b)
80             return 0;
81     }
82 }
83
84 int avahi_domain_ends_with(const char *domain, const char *suffix) {
85     assert(domain);
86     assert(suffix);
87
88     for (;;) {
89         char dummy[AVAHI_LABEL_MAX], *r;
90
91         if (*domain == 0)
92             return 0;
93         
94         if (avahi_domain_equal(domain, suffix))
95             return 1;
96
97         r = avahi_unescape_label(&domain, dummy, sizeof(dummy));
98         assert(r);
99     } 
100 }
101