]> git.meshlink.io Git - catta/blobdiff - avahi-compat-libdns_sd/txt-test.c
get rid of a lot of old svn cruft
[catta] / avahi-compat-libdns_sd / txt-test.c
index 5999dd4b9733a2b235de60760f5311ead66600ca..9bf29b487a39130f0b1fddd9ecd558134c5dd29d 100644 (file)
@@ -1,18 +1,16 @@
-/* $Id$ */
-
 /***
   This file is part of avahi.
+
   avahi is free software; you can redistribute it and/or modify it
   under the terms of the GNU Lesser General Public License as
   published by the Free Software Foundation; either version 2.1 of the
   License, or (at your option) any later version.
+
   avahi is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
   Public License for more details.
+
   You should have received a copy of the GNU Lesser General Public
   License along with avahi; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 #include <stdio.h>
 
 #include <avahi-common/gccmacro.h>
-#include "dns_sd.h"
+#include <dns_sd.h>
 
 static void hexdump(const void* p, size_t size) {
     const uint8_t *c = p;
     assert(p);
 
-    printf("Dumping %u bytes from %p:\n", size, p);
+    printf("Dumping %zu bytes from %p:\n", size, p);
 
     while (size > 0) {
         unsigned i;
@@ -87,10 +85,10 @@ int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
 
     TXTRecordSetValue(&ref, "yeah", 0, NULL);
     hexdump(TXTRecordGetBytesPtr(&ref), TXTRecordGetLength(&ref));
-    
+
     TXTRecordSetValue(&ref, "waldo", 6, "rocked");
     hexdump(TXTRecordGetBytesPtr(&ref), TXTRecordGetLength(&ref));
-    
+
     TXTRecordRemoveValue(&ref, "foo");
     hexdump(TXTRecordGetBytesPtr(&ref), TXTRecordGetLength(&ref));
 
@@ -99,7 +97,7 @@ int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
 
     TXTRecordSetValue(&ref, "kawumm", 6, "bloerb");
     hexdump(TXTRecordGetBytesPtr(&ref), TXTRecordGetLength(&ref));
-    
+
     TXTRecordSetValue(&ref, "one", 1, "1");
     hexdump(TXTRecordGetBytesPtr(&ref), TXTRecordGetLength(&ref));
 
@@ -108,7 +106,7 @@ int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
 
     TXTRecordSetValue(&ref, "three", 1, "3");
     hexdump(TXTRecordGetBytesPtr(&ref), TXTRecordGetLength(&ref));
-    
+
     assert(TXTRecordContainsKey(TXTRecordGetLength(&ref), TXTRecordGetBytesPtr(&ref), "two"));
     assert(!TXTRecordContainsKey(TXTRecordGetLength(&ref), TXTRecordGetBytesPtr(&ref), "four"));
 
@@ -125,6 +123,6 @@ int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) {
     hexdump(p, l);
 
     assert(TXTRecordGetItemAtIndex(TXTRecordGetLength(&ref), TXTRecordGetBytesPtr(&ref), 20, sizeof(k), k, &l, &p) == kDNSServiceErr_Invalid);
-    
+
     TXTRecordDeallocate(&ref);
 }