Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-16 | Make split(..., NULL) split on horizontal space; fix bug with tabs in config ↵ | Nick Mathewson | |
file. svn:r3155 | |||
2004-12-13 | Note that length checking on base64_decode is kinda conservative | Nick Mathewson | |
svn:r3144 | |||
2004-12-08 | Belt *or* suspenders will be sufficient when casting things to unsigned char. | Nick Mathewson | |
svn:r3122 | |||
2004-12-08 | Solaris CC freaks out if isspace and friends get anything other than an int. ↵ | Nick Mathewson | |
We learned that, so we casted. But it is also a bad idea to cast a signed char to an int and expect things to work on win32. Now we cast to unsigned char, then to int, then pass to isspace. Ug svn:r3120 | |||
2004-12-07 | fix comment | Roger Dingledine | |
svn:r3110 | |||
2004-12-07 | Fix some memory leaks and unlikely segfaults | Nick Mathewson | |
svn:r3103 | |||
2004-12-07 | note an improvement on our uname we might want to make one day | Roger Dingledine | |
svn:r3101 | |||
2004-12-07 | Fix leakable rsa key | Nick Mathewson | |
svn:r3099 | |||
2004-12-06 | Fix parse_iso_time on platforms without strptime. | Nick Mathewson | |
svn:r3091 | |||
2004-12-05 | int is not necessarily the same size as size_t | Roger Dingledine | |
svn:r3079 | |||
2004-12-04 | fix comment | Roger Dingledine | |
svn:r3077 | |||
2004-12-02 | Be more proactive about noticing underflows: size_t values greater than ↵ | Nick Mathewson | |
0x800...00 are likely to be trouble. svn:r3064 | |||
2004-12-01 | Fix windows build. | Nick Mathewson | |
svn:r3053 | |||
2004-12-01 | Spell-check strings and comments | Nick Mathewson | |
svn:r3052 | |||
2004-12-01 | If we are using select, make sure we stay within FD_SETSIZE. | Nick Mathewson | |
svn:r3051 | |||
2004-11-30 | a few minor tweaks | Roger Dingledine | |
svn:r3041 | |||
2004-11-30 | doxygen uses backslashes, not forward-slashes | Nick Mathewson | |
svn:r3033 | |||
2004-11-30 | clarify why strlcpy is safe in truncated log messages | Nick Mathewson | |
svn:r3032 | |||
2004-11-30 | Add casei versions of strcmpstart/strcmpend | Nick Mathewson | |
svn:r3026 | |||
2004-11-29 | Suggestion from weasel: Make tor --version --version dump the cvs Id of ↵ | Nick Mathewson | |
every file. svn:r3019 | |||
2004-11-29 | Remove needless -2 in log code. This was not an underflow risk, sinze we ↵ | Nick Mathewson | |
only call format_msg from one place, where buf_len==10024 svn:r3017 | |||
2004-11-29 | clean up the previous underflow check, and also point out | Roger Dingledine | |
yet another one that may be a problem. nick? svn:r3016 | |||
2004-11-29 | Disallow NDEBUG. It is very stupid. | Nick Mathewson | |
svn:r3012 | |||
2004-11-29 | fix integer underflow in tor_vsnprintf() | Roger Dingledine | |
(probably exploitable) svn:r3011 | |||
2004-11-29 | prevent integer underflow | Roger Dingledine | |
(not currently exploitable, ilja and i think) svn:r3010 | |||
2004-11-28 | wrong is ok, and right is fine, but in between is apparently | Roger Dingledine | |
totally unacceptable to me. svn:r3005 | |||
2004-11-28 | correct multiple internal spaces | Nick Mathewson | |
svn:r3004 | |||
2004-11-28 | Normalize space: add one between every control keyword and control clause. | Nick Mathewson | |
svn:r3003 | |||
2004-11-28 | connect() on win32 can do more things than we thought? | Nick Mathewson | |
svn:r2999 | |||
2004-11-28 | Very oops. make windows nonblocking sockets nonblocking | Nick Mathewson | |
svn:r2998 | |||
2004-11-28 | remember; tor_socket_errno has side effects! | Nick Mathewson | |
svn:r2997 | |||
2004-11-26 | remove emacs droppings, since nick says he doesn't need them anymore | Roger Dingledine | |
svn:r2989 | |||
2004-11-24 | Flush the logfd after we print "Tor opening log file", so we don't see those ↵ | Peter Palfrader | |
messages days later svn:r2980 | |||
2004-11-23 | Clean up some logging and interfaces | Nick Mathewson | |
svn:r2945 | |||
2004-11-22 | Normalize a few more kinds of whitespace. We now dislike: | Nick Mathewson | |
- func (args) - if (x){ This doesn't normalize if(x), for(x); while(x), and friends. svn:r2943 | |||
2004-11-22 | Add function to format local time in ISO format | Nick Mathewson | |
svn:r2935 | |||
2004-11-20 | and a comment so i don't try to 'fix' it again later | Roger Dingledine | |
svn:r2919 | |||
2004-11-20 | yes, in fact, i broke it. putting back. | Roger Dingledine | |
svn:r2918 | |||
2004-11-20 | kill -USR2 now moves all logs to loglevel debug | Roger Dingledine | |
plus fix some typos svn:r2914 | |||
2004-11-20 | simplify close_temp_logs() | Roger Dingledine | |
(nick, did i break this?) svn:r2913 | |||
2004-11-20 | remove another possible sigpipe cause | Roger Dingledine | |
svn:r2912 | |||
2004-11-20 | Add "MEMUNIT" and "INTERVAL" types to configuration. Also tweak Accounting ↵ | Nick Mathewson | |
setup. More docs needed svn:r2911 | |||
2004-11-16 | Fix a fun bug in read_all that was corrupting config files on windows, and ↵ | Nick Mathewson | |
probably doing other bad stuff too. svn:r2898 | |||
2004-11-15 | Make log_fn not fail so miserably on VC6 | Nick Mathewson | |
svn:r2896 | |||
2004-11-15 | Whitespace normalization | Nick Mathewson | |
svn:r2895 | |||
2004-11-15 | ugly macros to make log_fn play nice on non-GCC compilers. | Nick Mathewson | |
svn:r2894 | |||
2004-11-14 | Split X509 certificate liveness checks into a separate function | Nick Mathewson | |
svn:r2873 | |||
2004-11-14 | Fix "implicit declaration of ftello" warning: add AC_FUNC_FSEEKO in ↵ | Nick Mathewson | |
configure.in and always include orconfig.h before anything else svn:r2854 | |||
2004-11-14 | remove redundant stdio.h | Roger Dingledine | |
i guess that wasn't the fix svn:r2849 | |||
2004-11-14 | clean up the ftello call a little bit. | Roger Dingledine | |
but i'm still getting: log.c:94: warning: implicit declaration of function `ftello' svn:r2848 |