4 This file is part of avahi.
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.
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.
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
29 #include <avahi-common/gccmacro.h>
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); }
35 static void hexdump(const void* p, size_t size) {
39 printf("Dumping %u bytes from %p:\n", size, p);
44 for (i = 0; i < 16; i++) {
46 printf("%02x ", c[i]);
51 for (i = 0; i < 16; i++) {
53 printf("%c", c[i] >= 32 && c[i] < 127 ? c[i] : '.');
69 int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
71 sw_text_record_iterator it;
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));
82 hexdump(sw_text_record_bytes(r), sw_text_record_len(r));
84 ASSERT_SW_OKAY(sw_text_record_iterator_init(&it, sw_text_record_bytes(r), sw_text_record_len(r)));
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);
91 ASSERT_SW_OKAY(sw_text_record_iterator_fina(it));
96 ASSERT_SW_OKAY(sw_text_record_fina(r));