From 158a0fa6984b15aaa1a818a132db58fc96996048 Mon Sep 17 00:00:00 2001 From: gardners Date: Sun, 4 Dec 2011 09:22:40 +1030 Subject: [PATCH] Added debug output for showing peers found via various means. --- batman.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/batman.c b/batman.c index 157f53fe..264ea1f4 100644 --- a/batman.c +++ b/batman.c @@ -85,6 +85,7 @@ int readRoutingTable(struct in_addr peers[],int *peer_count,int peer_max){ } if (*peer_count2) fprintf(stderr,"Found peer %08lx from routing table\n",d); } fclose(fp); return 0; @@ -126,6 +127,7 @@ int readArpTable(struct in_addr peers[],int *peer_count,int peer_max){ } if (*peer_count2) fprintf(stderr,"Found peer %08lx from ARP table\n",d); } fclose(fp); return 0;