diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-05-01 20:46:28 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-05-01 20:46:28 +0000 |
commit | 908ccb9dcdff19c6015a31726d2db5db5fef3ede (patch) | |
tree | 087a63bb6c490291ec12ae4f2e6f5c3dfc984ca4 /src/common/torint.h | |
parent | ac4cb9bdd19bee938d1cb4cb9def727f92c8d2fc (diff) | |
download | tor-908ccb9dcdff19c6015a31726d2db5db5fef3ede.tar.gz tor-908ccb9dcdff19c6015a31726d2db5db5fef3ede.zip |
Handle windows socket errors correctly; comment most of common.
svn:r1756
Diffstat (limited to 'src/common/torint.h')
-rw-r--r-- | src/common/torint.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/torint.h b/src/common/torint.h index c80404a468..80ee48820d 100644 --- a/src/common/torint.h +++ b/src/common/torint.h @@ -2,11 +2,16 @@ /* See LICENSE for licensing information */ /* $Id$ */ +/***** + * torint.h: Header file to define uint32_t and friends. + *****/ + #ifndef __TORINT_H #define __TORINT_H #include "orconfig.h" + #ifdef HAVE_STDINT_H #include <stdint.h> #endif |