| Commit message (Expand) | Author | Age |
... | |
* | r7324@Kushana: nickm | 2006-08-10 23:23:15 -0700••• Add more warnings to the list of those we tolerate. Start using GCC attributes more, for better error checking and better code generation.
svn:r7020
| Nick Mathewson | 2006-08-11 |
* | r6949@Kushana: nickm | 2006-07-28 10:17:38 -0400••• Shave another 8 bytes from connection_t: turn inbuf_reached_eof into a bit, and lower timestamp_lastempty to or_connection_t
svn:r6934
| Nick Mathewson | 2006-07-28 |
* | r6922@Kushana: nickm | 2006-07-26 16:32:24 -0400••• Rename some fields, compress a bitfield, and document some structs and fields
svn:r6919
| Nick Mathewson | 2006-07-27 |
* | r6909@Kushana: nickm | 2006-07-26 13:05:58 -0400••• Clean up wide lines from last patch.
svn:r6907
| Nick Mathewson | 2006-07-26 |
* | r6908@Kushana: nickm | 2006-07-26 12:38:52 -0400••• Refactor connection_t into edge, or, dir, control, and base subtypes. This might save some RAM on busy exit servers, but really matters most in terms of correctness.
svn:r6906
| Nick Mathewson | 2006-07-26 |
* | publish a new descriptor after we hup. this is important if our•••config has changed such that we'll want to start advertising our
dirport now, etc.
svn:r6819
| Roger Dingledine | 2006-07-23 |
* | think harder about my logic•••svn:r6806
| Roger Dingledine | 2006-07-22 |
* | i lied, that won't work at all. maybe this will.•••svn:r6805
| Roger Dingledine | 2006-07-22 |
* | more bulletproof reachability testing•••svn:r6804
| Roger Dingledine | 2006-07-22 |
* | bugfix: if you find yourself reachable, then don't ever make any client•••requests (so you stop predicting circuits), then hup, then later your
IP changes, you won't think circuits are working so you won't try to
test reachability, so you won't publish.
svn:r6800
| Roger Dingledine | 2006-07-21 |
* | Oh. And apparently, msvc6 doesnt think very much of doing u64-and-double arit...•••svn:r6785
| Nick Mathewson | 2006-07-18 |
* | fix some more places where we shouldn't crash if we can't build•••our own descriptor yet.
svn:r6775
| Roger Dingledine | 2006-07-17 |
* | MSVC6 is apparently terrified of unnatural cross-breeding between uint64_t an...•••svn:r6768
| Nick Mathewson | 2006-07-17 |
* | Get rid of the router_retry_connections notion. Now routers no longer•••try to rebuild long-term connections to directory authorities, and
directory authorities no longer try to rebuild long-term connections to
all servers.
We still don't hang up connections in these two cases though -- we need
to look at it more carefully to avoid flapping, and we likely need to
wait til 0.1.1.x is obsolete.
svn:r6712
| Roger Dingledine | 2006-07-04 |
* | lower the number of seconds before we yell about clock jump.•••and make the yelling only happen if you're a server.
svn:r6625
| Roger Dingledine | 2006-06-15 |
* | simplify the tortls api: we only support being a "server", that•••is, even tor clients do the same sort of handshake.
this has been true for years, so it's best to get rid of the
stale code.
svn:r6557
| Roger Dingledine | 2006-06-07 |
* | Add a new warning to our "warn a lot" list: unused parameters. This means we...•••svn:r6532
| Nick Mathewson | 2006-06-04 |
* | clean up a comment•••svn:r6508
| Roger Dingledine | 2006-05-28 |
* | stop telling people that "tor -h" will help them in any way.•••svn:r6447
| Roger Dingledine | 2006-05-08 |
* | petty cleanups•••svn:r6421
| Roger Dingledine | 2006-04-25 |
* | no need to escape the address for our connections -- they are•••always IP addresses.
svn:r6389
| Roger Dingledine | 2006-04-16 |
* | Stop assuming every authority is a v1 authority•••svn:r6377
| Peter Palfrader | 2006-04-10 |
* | make DirFetchPeriod and StatusFetchPeriod truly obsolete.•••svn:r6373
| Roger Dingledine | 2006-04-10 |
* | Refactor and consolidate addr/exit policies into a new policies.c.•••Fix some minor bugs and memory leaks along the way.
svn:r6246
| Roger Dingledine | 2006-03-27 |
* | stop caching the v1 directory so often.•••svn:r6226
| Roger Dingledine | 2006-03-22 |
* | stop writing the "router.desc" file, ever. nothing uses it anymore.•••svn:r6224
| Roger Dingledine | 2006-03-22 |
* | Bugfix: looks like clients since 0.1.1.10-alpha have been•••expiring connections whenever 5 minutes pass and they *do*
have circuits on them.
svn:r6213
| Roger Dingledine | 2006-03-21 |
* | Allow non-printable characters for exit streams (both for•••connecting and for resolving). Now we tolerate applications
that don't follow the RFCs. But continue to block malformed
names at the socks side.
svn:r6193
| Roger Dingledine | 2006-03-19 |
* | if we as a directory mirror don't know of any v1 directory•••authorities, then don't try to cache any v1 directories.
svn:r6162
| Roger Dingledine | 2006-03-15 |
* | when event_add or event_del fail, tell us why.•••svn:r6156
| Roger Dingledine | 2006-03-13 |
* | More cleanups noticed by weasel; also, remove macros that nobody uses.•••svn:r6143
| Nick Mathewson | 2006-03-12 |
* | Cleanup on time-relaqted constants. New conventions:••• 1) Surround all constants by (parens), whether we'll be using them
in a denominator or not.
2) Express all time periods as products (24*60*60), not as multiplied-out
constants (86400).
3) Comments like "(60*60) /* one hour */" are as pointless as comments
like "c = a + b; /* set c to the sum of a and b */". Remove them.
4) All time periods should be #defined constants, not given inline.
5) All time periods should have doxygen comments.
6) All time periods, unless specified, are in seconds. It's not necessary
to say so.
To summarize, the old (lack of) style would allow:
#define FOO_RETRY_INTERVAL 60*60 /* one hour (seconds) */
next_try = now + 3600;
The new style is:
/** How often do we reattempt foo? */
#define FOO_RETRY_INTERVAL (60*60)
next_try = now + RETRY_INTERVAL;
svn:r6142
| Nick Mathewson | 2006-03-12 |
* | a better clean-up•••svn:r6139
| Roger Dingledine | 2006-03-12 |
* | and another fix•••svn:r6138
| Roger Dingledine | 2006-03-12 |
* | stop printing a log message at every iteration through the•••event loop when holding open a conn for flushing but it
doesn't want to flush any more bytes yet.
svn:r6114
| Roger Dingledine | 2006-03-09 |
* | Implement NEWNYM. Nick, did I do a bad thing?•••svn:r6105
| Roger Dingledine | 2006-03-09 |
* | clean up typo•••svn:r6103
| Roger Dingledine | 2006-03-09 |
* | Explain why we only expire open connections•••svn:r6015
| Peter Palfrader | 2006-02-14 |
* | Do not mark connections obsolete before they have done their TLS handshake or...•••svn:r6013
| Peter Palfrader | 2006-02-14 |
* | the things we do for our windows users.•••i hope they appreciate it.
svn:r6004
| Roger Dingledine | 2006-02-13 |
* | Happy new year!•••svn:r5949
| Roger Dingledine | 2006-02-09 |
* | stop calling it a "libevent poll" -- the word "poll" has•••other meaning in this context that are confusing.
svn:r5936
| Roger Dingledine | 2006-02-09 |
* | as soon as we've fetched some more directory info, that's time•••to think about downloading more server descriptors. this way
we don't have a 10 second pause in initial bootstrapping.
svn:r5916
| Roger Dingledine | 2006-02-05 |
* | forward-port the part where ordinary users try to fetch directories•••less often. not critical but might as well stay in sync with stable.
svn:r5910
| Roger Dingledine | 2006-02-05 |
* | don't try to upload hidden service descriptors until we have•••established a circuit.
svn:r5884
| Roger Dingledine | 2006-02-01 |
* | only start testing reachability once we've established a circuit.•••this will make startup on dirservers less noisy.
it may also break things in subtle ways.
svn:r5878
| Roger Dingledine | 2006-01-29 |
* | a slightly more useful message when you get a sighup•••svn:r5869
| Roger Dingledine | 2006-01-26 |
* | Stop complaining loudly whenever some poor client falls off•••the network before we finish writing to him.
svn:r5850
| Roger Dingledine | 2006-01-23 |
* | oh hey. we were hanging up on every tor client because he•••was obsolete as soon as he started. big oops.
svn:r5807
| Roger Dingledine | 2006-01-11 |
* | Fix wide lines•••svn:r5793
| Nick Mathewson | 2006-01-11 |