[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Finish implementing GETINFO; make it easy to query address ...
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] Finish implementing GETINFO; make it easy to query address ...
- From: nickm@xxxxxxxx (Nick Mathewson)
- Date: Thu, 3 Mar 2005 01:37:56 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Thu, 03 Mar 2005 01:38:48 -0500
- Reply-to: or-dev@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
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))