Update in sending Info Interest
diff --git a/utility.c b/utility.c
index ed22483..283376d 100644
--- a/utility.c
+++ b/utility.c
@@ -70,3 +70,14 @@
 	gettimeofday(&now,NULL);
 	return now.tv_sec;
 }
+
+
+long int 
+get_current_time_microsec(void)
+{
+	struct timeval now; 
+	gettimeofday(&now, NULL);
+	long int microSec=1000000*now.tv_sec+now.tv_usec;
+	return microSec;
+
+}