[or-cvs] Finish implementing GETINFO; make it easy to query address ...

Nick Mathewson nickm at seul.org
Thu Mar 3 06:37:56 UTC 2005


Update of /home/or/cvsroot/tor/src/common
In directory moria.mit.edu:/tmp/cvs-serv26312/src/common

Modified Files:
	torint.h 
Log Message:
Finish implementing GETINFO; make it easy to query address maps.

Index: torint.h
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/torint.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- torint.h	22 Feb 2005 04:26:45 -0000	1.17
+++ torint.h	3 Mar 2005 06:37:54 -0000	1.18
@@ -235,6 +235,16 @@
 #endif
 #endif
 
+#ifndef TIME_MAX
+#if (SIZEOF_TIME_T == 4)
+#define TIME_MAX ((time_t)UINT32_MAX)
+#elif (SIZEOF_TIME_T == 8)
+#define TIME_MAX ((time_t)UINT64_MAX)
+#else
+#error "Can't define TIME_MAX"
+#endif
+#endif
+
 /* Any size_t larger than this amount is likely to be an underflow. */
 #define SIZE_T_CEILING (sizeof(char)<<(sizeof(size_t)*8 - 1))
 



More information about the tor-commits mailing list