aboutsummaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
Commit message (Expand)AuthorAge
* r13827@catbus: nickm | 2007-07-19 14:42:25 -0400••• Merge in some generic address manipulation code from croup. Needs some work. svn:r10880 Nick Mathewson2007-07-19
* r13822@catbus: nickm | 2007-07-18 16:43:39 -0400••• Tweak a couple of loop-related variables to make the gcc 4.2 -Wstrict-overflow warning happy. svn:r10874 Nick Mathewson2007-07-18
* r13821@catbus: nickm | 2007-07-18 16:29:17 -0400••• Initial code to manipulate vote timing correctly. svn:r10873 Nick Mathewson2007-07-18
* Change routerlist_remove to not take an index argument we do not need anyway.•••Now the only remaining caller of _routerlist_find_elt is an assert() svn:r10869 Peter Palfrader2007-07-18
* timeout and retry schedules for fetching bridge descriptors•••svn:r10867 Roger Dingledine2007-07-18
* Backport candidate:•••Fix a potential crash bug when we load many server descriptors at once and some of them make others of them obsolete. Fixes bug 458. [Bugfix on 0.1.2.x] svn:r10832 Roger Dingledine2007-07-16
* backport candidate: fix a memory leak from r9039 which had us leaking•••50ish bytes every time we rebuild the cached-router files. svn:r10830 Roger Dingledine2007-07-15
* Comment one tor_assert•••svn:r10820 Peter Palfrader2007-07-12
* Keep streamids from different exits on a circuit separate. This•••bug may have allowed other routers on a given circuit to inject cells into streams. Reported by lodger; fixes bug 446. [Bugfix on 0.1.2.x] svn:r10818 Roger Dingledine2007-07-12
* r13730@catbus: nickm | 2007-07-12 12:32:40 -0400••• Patch from lodger: avoid roundoff-error-induced crash bugs when picking routers by bandwidth. Also, remove listed backports for 0.1.2.x; that list is now in TODO.012 svn:r10812 Nick Mathewson2007-07-12
* In router_add_to_routerlist() only call router_have_minimum_dir_info() under ...•••svn:r10799 Peter Palfrader2007-07-12
* Call router_have_minimum_dir_info() at the beginning of router_add_to_routerl...•••svn:r10754 Peter Palfrader2007-07-06
* Remove two arguments from routerlist_replace(). idx, which is•••the old router's index in the routerlist, can be gotten from the old routerinfo itself anyway, and make_old always was true. (There only is one caller of routerlist_replace()) svn:r10753 Peter Palfrader2007-07-06
* r13634@catbus: nickm | 2007-07-06 14:20:50 -0400••• Fix a crash bug (*the* crash bug?) on authorities. Backport candidate. svn:r10752 Nick Mathewson2007-07-06
* I so wonder how this blows up on the real network - make _routerlist_find_elt...•••svn:r10727 Peter Palfrader2007-07-02
* If we want to be more strict in _routerlist_find_elt I better call it properly•••svn:r10726 Peter Palfrader2007-07-02
* Don't get private with smartlists when there's a perfectly fine accessor meth...•••svn:r10724 Peter Palfrader2007-07-02
* Three more assertions which hopefully are sane, Nick? They might help track ...•••svn:r10720 Peter Palfrader2007-07-02
* now we can specify a bridge without specifying its key,•••and we will still connect to it and use it. getting closer! svn:r10609 Roger Dingledine2007-06-15
* Refine r10571: more work on bridge stuff.••• - Only listen to responses for "authority" fetches if we're configured to use Bridges. Otherwise it's safe (and maybe smarter) to silently discard them like we used to. - React faster to download networkstatuses after the first bridge descriptor arrives. - Don't do dir fetches before we have any bridges, even when our dirport is open. svn:r10604 Roger Dingledine2007-06-15
* r13413@catbus: nickm | 2007-06-13 18:44:28 -0400••• Non-static inline functions cant talk about static variables. svn:r10599 Nick Mathewson2007-06-13
* More work towards making bridge users able to connect via bridges:••• - demand options->Bridges and options->TunnelDirConns if options->UseBridges is set. - after directory fetches, accept descriptors that aren't referenced by our networkstatuses, *if* they're for a configured bridge. - delay directory fetching until we have at least one bridge descriptor. - learn how to build a one-hop circuit when we have neither routerinfo nor routerstatus for our destination. - teach directory connections how to pick a bridge as the destination directory when doing non-anonymous fetches. - tolerate directory commands for which the dir_port is 0. - remember descriptors when the requested_resource was "authority", rather than just ignoring them. - put bridges on our entry_guards list once we have a descriptor for them. When UseBridges is set, only pick entry guards that are bridges. Else vice versa. svn:r10571 Roger Dingledine2007-06-12
* Resetting the correct stats•••svn:r10569 Peter Palfrader2007-06-12
* r13364@catbus: nickm | 2007-06-11 20:15:53 -0400••• Stop assuming that desc_by_eid_map works: in fact, it kinda doesn't. Add a big comment explaining why. svn:r10567 Nick Mathewson2007-06-12
* r13355@catbus: nickm | 2007-06-11 18:19:34 -0400••• Make all the digestmaps inside routerlist_t use the new typechecking wrappers, so we can catch any more bugs like the one fixed by 10561. This turned up a bug in routerlist_remove: we were extracting a routerinfo_t from desc_digest_map. Fix that too, though it was probably harmless, since we were only doing a pointer comparison with it. svn:r10563 Nick Mathewson2007-06-11
* r13352@catbus: nickm | 2007-06-11 17:42:45 -0400••• Since desc_by_eid_map hold server descriptors, do not add routerinfo_ts. Bug found by weasel svn:r10561 Nick Mathewson2007-06-11
* Reorder routerlist_assert_ok() and routerlist_check_bug_417(), so if the asse...•••svn:r10560 Peter Palfrader2007-06-11
* more building blocks towards being able to fetch bridge descriptors•••svn:r10548 Roger Dingledine2007-06-10
* r13317@catbus: nickm | 2007-06-08 14:39:59 -0400••• bugfix: we were undercounting the number of authorities that recommended any given version by 1. Backport candidate. svn:r10537 Nick Mathewson2007-06-08
* r13274@catbus: nickm | 2007-06-05 19:06:30 -0400••• Remove some deadcode that seems unlikely to return svn:r10509 Nick Mathewson2007-06-06
* r13254@catbus: nickm | 2007-06-04 20:13:47 -0400••• When choosing a guard, weight by bandwidth. Resolves bug 440. svn:r10493 Nick Mathewson2007-06-05
* r13243@catbus: nickm | 2007-06-04 15:17:15 -0400••• Start of code to compute consensus network-status stuff from a bunch of votes. Strangely, it does not yet feel like an enormous ugly hack. svn:r10489 Nick Mathewson2007-06-04
* r13148@catbus: nickm | 2007-06-02 10:24:20 -0400••• Fix bug 441, 442, and possibly 417 (again). svn:r10449 Nick Mathewson2007-06-02
* r13144@catbus: nickm | 2007-06-02 08:44:42 -0400••• Add some asserts to catch double-insert on routerlist. svn:r10445 Nick Mathewson2007-06-02
* r13143@catbus: nickm | 2007-06-01 16:43:40 -0400••• Try to fix some mipspro compiler warnings. There will still be some left. svn:r10444 Nick Mathewson2007-06-02
* r13050@catbus: nickm | 2007-05-29 13:31:11 -0400••• Resolve all but 3 DOCDOCs. svn:r10393 Nick Mathewson2007-05-29
* r13041@catbus: nickm | 2007-05-29 10:40:05 -0400••• More messing around to try to address possible root causes of bug 436. svn:r10388 Nick Mathewson2007-05-29
* polish r9933-r9994•••svn:r10335 Roger Dingledine2007-05-25
* r12936@catbus: nickm | 2007-05-24 14:12:34 -0400••• Review XXXX comments without a version; upgrade some to XXXX020. svn:r10315 Nick Mathewson2007-05-24
* r12918@catbus: nickm | 2007-05-24 12:52:40 -0400••• Make reset_download_failures() reset extrainfo download status too. svn:r10306 Nick Mathewson2007-05-24
* r12915@catbus: nickm | 2007-05-24 12:12:34 -0400••• Do not send a warning when somebody uploads an extrainfo that we will reject, if it happens to be newer than our current routerdesc. svn:r10303 Nick Mathewson2007-05-24
* r12899@catbus: nickm | 2007-05-22 13:51:26 -0400••• Extract common code from networkstatus_getinfo_helper_single() and generate_v2_networkstatus(). svn:r10294 Nick Mathewson2007-05-22
* r12898@catbus: nickm | 2007-05-22 13:11:04 -0400••• More v3 directory code: have authorities load certificates; have everybody store certificates to disk and load them; provide a way to configure v3 authorities. svn:r10293 Nick Mathewson2007-05-22
* r12853@catbus: nickm | 2007-05-22 11:36:54 -0400••• Make connection_array into a smartlist. svn:r10292 Nick Mathewson2007-05-22
* r12850@catbus: nickm | 2007-05-21 22:20:42 -0400••• Partial backport candidate: do not rely on finding a \0 after an mmaped() router/extrainfo file. Also, set journal length correctly when starting up. svn:r10248 Nick Mathewson2007-05-22
* r12846@catbus: nickm | 2007-05-21 21:55:15 -0400••• Oops; it is possible to have an empty store. svn:r10247 Nick Mathewson2007-05-22
* r12844@catbus: nickm | 2007-05-21 21:52:19 -0400••• Oops. It compiles better when you spell the fields right. svn:r10245 Nick Mathewson2007-05-22
* r12842@catbus: nickm | 2007-05-21 21:51:45 -0400••• Partial backport candidate. Fix issue noted in r10241: stores were rebuilt too often. Also notes dropped bytes better. svn:r10244 Nick Mathewson2007-05-22
* mark a bug for nick to tackle -- we're rebuilding our router store more•••often than we need to. reported by lodger. svn:r10241 Roger Dingledine2007-05-22
* Make the NodeFamilies config option work. (Reported by•••lodger -- it has never actually worked, even though we added it in Oct 2004.) svn:r10238 Roger Dingledine2007-05-22