aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2005-06-11Docment or add DOCDOC comments to undocumented functions in src/or. Make ↵Nick Mathewson
function definition format uniform. svn:r4411
2005-06-11move more docs into our codeRoger Dingledine
svn:r4406
2005-06-11flesh out the source file descriptions for doxygenRoger Dingledine
svn:r4404
2005-06-09don't tell people you're publishing the server descriptor if you'reRoger Dingledine
actually not. svn:r4387
2005-06-09Change end-of-file NLNL convention. It turns out arma I and I agree.Nick Mathewson
svn:r4382
2005-06-09New whitespace normalization rule: no blank line at EOF.Nick Mathewson
svn:r4378
2005-06-09forward-port:Roger Dingledine
## If certain IPs and ports are blocked externally, e.g. by your firewall, ## you should update your exit policy to reflect this -- otherwise Tor ## users will be told that those destinations are down. svn:r4376
2005-06-09when a dirserver gets a mismatched fingerprint, log the expectedRoger Dingledine
fp and the received fp svn:r4372
2005-06-09pay more attention to the ClientOnly config optionRoger Dingledine
svn:r4367
2005-06-09fix another underflow in keeping statsRoger Dingledine
these size_ts are subtle buggers svn:r4364
2005-06-08Fix an underflow in buffer use conting.Nick Mathewson
svn:r4360
2005-06-08clean up the log warn a bitRoger Dingledine
svn:r4357
2005-06-08Fix warning about unused function when compiling with ancient libeventNick Mathewson
svn:r4355
2005-06-08absolutely refuse to let people pick internal IP addresses ifRoger Dingledine
they're using the default dirservers. we're getting a big pile of a dozen or so servers that have picked private IP addresses despite the warning (presumably they don't even know they have logs) svn:r4354
2005-06-08Reset buf->highwater every time buf_shrink is called, not just on suffessful ↵Nick Mathewson
shrink. svn:r4353
2005-06-08don't upload your descriptor if rebuilding it failedRoger Dingledine
svn:r4352
2005-06-08Remove extraneous newlines from libevent log messages. Backport candidate?Nick Mathewson
svn:r4350
2005-06-08Some play code to throw away old buffers sometimes ratherRoger Dingledine
than constantly reallocing them; just in case this is our memory problem. It looks for now like it isn't, so disabled. svn:r4349
2005-06-08dump periodic memory usage statsRoger Dingledine
svn:r4348
2005-06-08Fix syntax error.Nick Mathewson
svn:r4346
2005-06-08add patch for 143 and code to check for known-bad/slow libevent versions. ↵Nick Mathewson
Needs more testing. svn:r4344
2005-06-08reenable the part of the code that tries to flush as soon as an OR outbufRoger Dingledine
has a full tls record available. perhaps this will make OR outbufs not grow as huge except in rare cases, thus saving lots of cpu time plus memory. svn:r4343
2005-06-07when you send a USR2 signal, the log message now tells you to sendRoger Dingledine
a HUP signal if you want to change back to old log levels. svn:r4332
2005-06-07Fix for 152: reject malformed .onion addresses rather then passing them onNick Mathewson
svn:r4329
2005-06-07Use correct errno from libevent on win32Nick Mathewson
svn:r4327
2005-06-07Adapt patch from Adam Langley: fix possible memory leak in tor_lookup_hostnameNick Mathewson
svn:r4326
2005-06-06bump cvs to 0.1.1.0-alpha-cvsRoger Dingledine
svn:r4323
2005-06-06Fix win32 compilation: backport candidateNick Mathewson
svn:r4320
2005-06-06When RNG seeding fails, die. Backport candidateNick Mathewson
svn:r4319
2005-06-06Possible bugfix for 151: backport candidate.Nick Mathewson
svn:r4318
2005-06-06Instrument buffers.c and rephist.c memory usageNick Mathewson
svn:r4317
2005-06-06correct some instructions in the sample torrcRoger Dingledine
svn:r4314
2005-06-05Fix buffer overlow when checking hashed passwordsNick Mathewson
svn:r4308
2005-06-04Add unit test for openpgp s2kNick Mathewson
svn:r4306
2005-05-27clean up a few more log entriestor-0.1.0.9-rctor-0.1.0.14tor-0.1.0.13tor-0.1.0.12tor-0.1.0.11tor-0.1.0.10Roger Dingledine
svn:r4304
2005-05-25downgrade the 'caught sigpipe' notice.Roger Dingledine
we're going to pretend like all of these are fine. svn:r4301
2005-05-24make lucky's weird libevent poll einprogress bug just warn, not kill tor.Roger Dingledine
svn:r4300
2005-05-24Fix not-freed-on-exit eventNick Mathewson
svn:r4298
2005-05-23Bugfix: we were checking to see if you want to send a keepalive, basedRoger Dingledine
on five minutes since last successful write. But if you have bytes queued already, and they're not getting through, we were adding a new keepalive every second. This was bad. svn:r4296
2005-05-23bump to 0.1.0.8-rcRoger Dingledine
svn:r4286
2005-05-23i screwed up the dirport reachability testing when we don't yetRoger Dingledine
have a cached version of the directory. hopefully now fixed. svn:r4284
2005-05-23Always disable kqueue on OSX. It seems linked to kernel panicsNick Mathewson
svn:r4282
2005-05-23test out commit mails againRoger Dingledine
svn:r4281
2005-05-23put a tor version at the top of the torrc.sample fileRoger Dingledine
svn:r4280
2005-05-23Make hashed controller password encoding use hex not base64; this makes it ↵Nick Mathewson
possible to write a controller without base64 svn:r4279
2005-05-21If a socks connection ends because read fails, don't warn that you'reRoger Dingledine
not sending a socks reply back. (bug reported by Warren Barrow) svn:r4277
2005-05-20we were leaking 616 bytes every time somebody established us asRoger Dingledine
an intro point for their hidden service. svn:r4276
2005-05-20a note for nick about other memory not freed at exitRoger Dingledine
svn:r4275
2005-05-20add HttpProxyAuthenticator config option tooRoger Dingledine
svn:r4272
2005-05-18bump to 0.1.0.7-rc-cvsRoger Dingledine
svn:r4267