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
31 #define ASSERT_SW_OKAY(t) { sw_result _r; _r = (t); assert(_r == SW_OKAY); }
32 #define ASSERT_NOT_NULL(t) { const void* _r; r = (t); assert(_r); }
34 static void hexdump(const void* p, size_t size) {
38 printf("Dumping %u bytes from %p:\n", size, p);
43 for (i = 0; i < 16; i++) {
45 printf("%02x ", c[i]);
50 for (i = 0; i < 16; i++) {
52 printf("%c", c[i] >= 32 && c[i] < 127 ? c[i] : '.');
68 int main(int argc, char *argv[]) {
70 sw_text_record_iterator it;
75 ASSERT_SW_OKAY(sw_text_record_init(&r));
76 ASSERT_SW_OKAY(sw_text_record_add_string(r, "foo=bar"));
77 ASSERT_SW_OKAY(sw_text_record_add_string(r, "waldo=baz"));
78 ASSERT_SW_OKAY(sw_text_record_add_key_and_string_value(r, "quux", "nimpf"));
79 ASSERT_SW_OKAY(sw_text_record_add_key_and_binary_value(r, "quux", "\0\0\0\0", 4));
81 hexdump(sw_text_record_bytes(r), sw_text_record_len(r));
83 ASSERT_SW_OKAY(sw_text_record_iterator_init(&it, sw_text_record_bytes(r), sw_text_record_len(r)));
85 while (sw_text_record_iterator_next(it, key, val, &val_len) == SW_OKAY) {
86 printf("key=%s\n", key);
87 hexdump(val, val_len);
90 ASSERT_SW_OKAY(sw_text_record_iterator_fina(it));
95 ASSERT_SW_OKAY(sw_text_record_fina(r));