| Commit message (Expand) | Author | Age |
* | another minor fix•••svn:r3511
| Roger Dingledine | 2005-02-03 |
* | Add --with-dmalloc configure option•••svn:r3508
| Peter Palfrader | 2005-02-03 |
* | Write a function header for Roger so he can fill it with life•••svn:r3507
| Peter Palfrader | 2005-02-03 |
* | sometimes, a conn on the closeable_lst gets absolutely•••clobbered. maybe this will help me find out why.
svn:r3498
| Roger Dingledine | 2005-02-02 |
* | define TOR_FRAGILE if you want tor to give you a core when•••something goes wrong. this should only be used by people actively
tracking bugs.
svn:r3487
| Roger Dingledine | 2005-02-01 |
* | lay a trap for situations where we connection_free something•••that's still on one of the lists.
in particular, this will detect situations where we mark-for-close
and then free it ourselves.
svn:r3475
| Roger Dingledine | 2005-01-31 |
* | stop the infinite loop of freeing the same connection_t over and•••over when it's not linked into the connection_array
svn:r3474
| Roger Dingledine | 2005-01-31 |
* | Stop crashing when we're asking to close_if_marked a conn that•••hasn't been connection_added yet. This happens when an exit conn
is in dns_wait and we get a relay end cell for it before it finishes.
We were silently leaking each of these marked conns in 0.0.9.x. Now
we actually free them.
svn:r3470
| Roger Dingledine | 2005-01-30 |
* | try to find the corrupt closeable_connection_lst entry early•••svn:r3468
| Roger Dingledine | 2005-01-30 |
* | comment about a bug wrt clock skew•••svn:r3461
| Roger Dingledine | 2005-01-30 |
* | forward-port the dns and maxconn fixes•••svn:r3448
| Roger Dingledine | 2005-01-28 |
* | Forward-port win32 service patch; try to clean it a touch.•••svn:r3438
| Nick Mathewson | 2005-01-27 |
* | Appease another 64-bit warning•••svn:r3392
| Nick Mathewson | 2005-01-20 |
* | Appease weasel's paranoid 64-bit compiler.•••svn:r3389
| Nick Mathewson | 2005-01-20 |
* | Introduce a notion of 'internal' circs, which are chosen without regard•••to the exit policy of the last hop. Intro and rendezvous circs must
be internal circs, to avoid leaking information. Resolve and connect
streams can use internal circs if they want.
New circuit pooling algorithm: make sure to have enough circs around
to satisfy any predicted ports, and also make sure to have 2 internal
circs around if we've required internal circs lately (with high uptime
if we've seen that lately).
Split NewCircuitPeriod config option into NewCircuitPeriod (30 secs),
which describes how often we retry making new circuits if current ones
are dirty, and MaxCircuitDirtiness (10 mins), which describes how long
we're willing to make use of an already-dirty circuit.
Once rendezvous circuits are established, keep using the same circuit as
long as you attach a new stream to it at least every 10 minutes. (So web
browsing doesn't require you to build new rend circs every 30 seconds.)
Cannibalize GENERAL circs to be C_REND, C_INTRO, S_INTRO, and S_REND
circ as necessary, if there are any completed ones lying around when
we try to launch one.
Re-instate the ifdef's to use version-0 style introduce cells, since
there was yet another bug in handling version-1 style. We'll try switching
over again after 0.0.9 is obsolete.
Bugfix: when choosing an exit node for a new non-internal circ, don't take
into account whether it'll be useful for any pending x.onion addresses --
it won't.
Bugfix: we weren't actually publishing the hidden service descriptor when
it became dirty. So we only published it every 20 minutes or so, which
means when you first start your Tor, the hidden service will seem broken.
svn:r3360
| Roger Dingledine | 2005-01-17 |
* | Move call to event_init() immediately after start_daemon(); move start_daemon...•••svn:r3354
| Nick Mathewson | 2005-01-13 |
* | more cleanup•••svn:r3347
| Roger Dingledine | 2005-01-12 |
* | fix up some comments•••svn:r3345
| Roger Dingledine | 2005-01-12 |
* | tolerate bandwidtch buckets going negative (i hope)•••svn:r3344
| Roger Dingledine | 2005-01-12 |
* | Make Tor use Niels Provos's libevent instead of it's current•••poll-but-sometimes-select mess. This will let us use faster async cores
(like epoll, kpoll, and /dev/poll), and hopefully work better on Windows
too.
There are some fairly nasty changes to main.c here; this will almost
certainly break something. But hey, that's what alphas are for.
svn:r3341
| Nick Mathewson | 2005-01-12 |
* | if somebody starts his tor server in jan 2004 and then fixes his•••clock, don't make his published uptime be a year.
svn:r3337
| Roger Dingledine | 2005-01-11 |
* | separate time_of_process_start from stats_n_seconds_uptime:•••now we reset uptime when a dir fetch entirely fails. this
hopefully has something to do with stability of being on the
network.
svn:r3333
| Roger Dingledine | 2005-01-10 |
* | it helps to use the correct name for the struct•••svn:r3331
| Roger Dingledine | 2005-01-10 |
* | when pruning circuit-wait streams when a dir fetch failed,•••refer in logs to the destination address, not the address of the
application connection.
svn:r3330
| Roger Dingledine | 2005-01-10 |
* | when we haven't fetched a directory yet, or the last time we•••tried they were all unreachable, assume we are not connected to
the network.
when an application request comes in during this state, be
optimistic and assume we just reconnected. fetch a new directory
and if it works, begin making circuits.
svn:r3327
| Roger Dingledine | 2005-01-07 |
* | finish marking my comment in main.c•••svn:r3318
| Roger Dingledine | 2005-01-06 |
* | clean up string printing in relay logs•••svn:r3317
| Roger Dingledine | 2005-01-06 |
* | Implement SIGNAL control command.•••svn:r3307
| Nick Mathewson | 2005-01-05 |
* | Use correct logic to decide whether there are more directory servers to retry.•••svn:r3257
| Nick Mathewson | 2005-01-03 |
* | stop calling assert_connection_ok(conn, time(NULL)) on every single•••conn on every single loop.
svn:r3229
| Roger Dingledine | 2004-12-25 |
* | stop telling win32 folks they have a bug just because we haven't finished•••making tor work on win32 yet.
svn:r3227
| Roger Dingledine | 2004-12-25 |
* | move network_init from or/main to common/compat•••call network_init in tor-resolve.c too
move tor_lookup_hostname from common/util to common/compat
svn:r3203
| Roger Dingledine | 2004-12-22 |
* | respond to an 009 XXX•••svn:r3201
| Roger Dingledine | 2004-12-22 |
* | Clarify confusing message•••svn:r3151
| Nick Mathewson | 2004-12-16 |
* | note a future thing we should do•••svn:r3141
| Roger Dingledine | 2004-12-13 |
* | clean up logging,•••make it clearer which warns are bugs,
make the control log event match its specification,
point out a bug in how we deal with failure when renewing the tls context.
svn:r3138
| Roger Dingledine | 2004-12-13 |
* | Only launch dns workers when we are actually starting a server.•••svn:r3137
| Nick Mathewson | 2004-12-13 |
* | log bytes written with kill -USR1 too•••svn:r3112
| Roger Dingledine | 2004-12-07 |
* | salvage another 300 bytes per hup•••svn:r3106
| Roger Dingledine | 2004-12-07 |
* | Make unit tests work on win32•••svn:r3094
| Nick Mathewson | 2004-12-07 |
* | Spell-check strings and comments•••svn:r3052
| Nick Mathewson | 2004-12-01 |
* | do even less inside our signal handler,•••just to be extra paranoidly safe
svn:r3050
| Roger Dingledine | 2004-12-01 |
* | Let resolve conns retry/expire also, rather than sticking around forever.•••Put the check-if-requested-exitrouter-will-reject-us code in the
circuit_attach loop, so it gets checked periodically and not just
once at the beginning. This is useful in case the routerlist changes,
but also in case the address gets resolved into something that we learn
we'll reject.
svn:r3039
| Roger Dingledine | 2004-11-30 |
* | Suggestion from weasel: Make tor --version --version dump the cvs Id of every...•••svn:r3019
| Nick Mathewson | 2004-11-29 |
* | wrong is ok, and right is fine, but in between is apparently•••totally unacceptable to me.
svn:r3005
| Roger Dingledine | 2004-11-28 |
* | Normalize space: add one between every control keyword and control clause.•••svn:r3003
| Nick Mathewson | 2004-11-28 |
* | remember; tor_socket_errno has side effects!•••svn:r2997
| Nick Mathewson | 2004-11-28 |
* | inform him more sanely•••svn:r2993
| Roger Dingledine | 2004-11-26 |
* | inform the user that you noticed when he sent a USR2•••svn:r2992
| Roger Dingledine | 2004-11-26 |
* | if you want to handle -USR2, you should catch it too.•••svn:r2990
| Roger Dingledine | 2004-11-26 |