• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-compat-howl/
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 <assert.h>
27#include <stdio.h>
28
29#include <avahi-common/gccmacro.h>
30#include "howl.h"
31
32#define ASSERT_SW_OKAY(t) { sw_result _r; _r = (t); assert(_r == SW_OKAY); }
33#define ASSERT_NOT_NULL(t) { const void* _r; r = (t); assert(_r); }
34
35static void hexdump(const void* p, size_t size) {
36    const uint8_t *c = p;
37    assert(p);
38
39    printf("Dumping %u bytes from %p:\n", size, p);
40
41    while (size > 0) {
42        unsigned i;
43
44        for (i = 0; i < 16; i++) {
45            if (i < size)
46                printf("%02x ", c[i]);
47            else
48                printf("   ");
49        }
50
51        for (i = 0; i < 16; i++) {
52            if (i < size)
53                printf("%c", c[i] >= 32 && c[i] < 127 ? c[i] : '.');
54            else
55                printf(" ");
56        }
57
58        printf("\n");
59
60        c += 16;
61
62        if (size <= 16)
63            break;
64
65        size -= 16;
66    }
67}
68
69int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
70    sw_text_record r;
71    sw_text_record_iterator it;
72    char key[255];
73    uint8_t val[255];
74    sw_ulong val_len;
75
76    ASSERT_SW_OKAY(sw_text_record_init(&r));
77    ASSERT_SW_OKAY(sw_text_record_add_string(r, "foo=bar"));
78    ASSERT_SW_OKAY(sw_text_record_add_string(r, "waldo=baz"));
79    ASSERT_SW_OKAY(sw_text_record_add_key_and_string_value(r, "quux", "nimpf"));
80    ASSERT_SW_OKAY(sw_text_record_add_key_and_binary_value(r, "quux", "\0\0\0\0", 4));
81
82    hexdump(sw_text_record_bytes(r), sw_text_record_len(r));
83
84    ASSERT_SW_OKAY(sw_text_record_iterator_init(&it, sw_text_record_bytes(r), sw_text_record_len(r)));
85
86    while (sw_text_record_iterator_next(it, key, val, &val_len) == SW_OKAY) {
87        printf("key=%s\n", key);
88        hexdump(val, val_len);
89    }
90
91    ASSERT_SW_OKAY(sw_text_record_iterator_fina(it));
92
93
94
95
96    ASSERT_SW_OKAY(sw_text_record_fina(r));
97
98    return 0;
99}
100