Tracking Bug
diff --git a/nlsr-sync-0.0/nlsr_route.c b/nlsr-sync-0.0/nlsr_route.c
index 1c50d44..ba4b8e4 100755
--- a/nlsr-sync-0.0/nlsr_route.c
+++ b/nlsr-sync-0.0/nlsr_route.c
@@ -1170,6 +1170,14 @@
int
does_face_exist_for_router(char *dest_router, int face_id)
{
+ if (nlsr->debugging)
+ {
+ printf("does_face_exist_for_router called");
+ printf("Dest Router: %s and Face id: %d \n",dest_router, face_id);
+ }
+
+ print_routing_table();
+
int ret=0;
int res,res1;
@@ -1206,5 +1214,7 @@
hashtb_end(e);
+ print_routing_table();
+
return ret;
}