aboutsummaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
Commit message (Collapse)AuthorAge
* bugfix: add a circ->resolving_streams field, and make dns resolving ↵Roger Dingledine2004-05-06
| | | | | | | | | | | | streams not actually in the connection_array until they're done resolving. bugfix: actually complain if we duplicate mark-for-close a circuit add more logging for relay ends that claim dns resolve failed, so we can find out why they're not being retried. svn:r1798
* More documentation; fix for compilation warningNick Mathewson2004-05-05
| | | | svn:r1789
* More documentationNick Mathewson2004-05-05
| | | | svn:r1785
* Comment router*.cNick Mathewson2004-05-04
| | | | svn:r1783
* clean dns.c betterRoger Dingledine2004-04-28
| | | | svn:r1737
* Workarounds for a couple of pieces of windows strangeness.Nick Mathewson2004-04-28
| | | | svn:r1734
* now assume all routers support rendezvous cellsRoger Dingledine2004-04-25
| | | | svn:r1699
* use tor_assertRoger Dingledine2004-04-25
| | | | | | | remove obsolete BUF_OK macro svn:r1697
* Remove onion_pkey from connection, since onion keys can change more often ↵Nick Mathewson2004-04-25
| | | | | | than connections. Also add more log messages svn:r1693
* Spurious link-key should not be an errorNick Mathewson2004-04-24
| | | | svn:r1686
* Merge flagday into main branch.Nick Mathewson2004-04-24
| | | | svn:r1683
* Invert strcasecmp check for supports-rendezvousNick Mathewson2004-04-08
| | | | svn:r1560
* Freeing the same variable twice in rapid succession can sometimes cause a ↵Nick Mathewson2004-04-07
| | | | | | double-free svn:r1539
* Insert a *copy* of our routerinfo into the routerlist.Nick Mathewson2004-04-07
| | | | svn:r1538
* Don't use Tor version 0.0.5 for intro/rendezvous points. (We don't needNick Mathewson2004-04-07
| | | | | | | to worry about 0.0.4 or earlier, because nobody is running them any more.) svn:r1533
* Delete trailing whitespace and expand tabs; remove unused aes decrypt codeNick Mathewson2004-04-07
| | | | svn:r1522
* Put ourself in router list; act accordingly.Nick Mathewson2004-04-07
| | | | svn:r1521
* Set routerinfo->addr properly for own routerinfo; do casei routerinfo compareNick Mathewson2004-04-06
| | | | svn:r1514
* Continue attack on magic numbers; use new crypto wrappers where possibleNick Mathewson2004-04-06
| | | | svn:r1504
* make router_get_by_nickname consider this router.Nick Mathewson2004-04-05
| | | | svn:r1497
* alice can now look up bob's service descriptor,Roger Dingledine2004-04-05
| | | | | | | | | | | | | | | | | choose an intro point, connect to it, choose a rend point, connect to it and establish a cookie, get an ack from the rendezvous point, and know when both circs are ready for her. APConns don't use conn->purpose anymore don't initiate a renddesc lookup if one is already in progress also fix a buffer overflow in nickname parsing (only exploitable by the operator though) svn:r1471
* Refactor the heck out of crypto interface: admit that we will stick with one ↵Nick Mathewson2004-04-03
| | | | | | ciphersuite at a time, make const things const, and stop putting openssl in the headers. svn:r1458
* Hide smartlist internalsNick Mathewson2004-04-03
| | | | svn:r1451
* break out circ->rend_serviceRoger Dingledine2004-04-02
| | | | | | | | | | | (this breaks the compile; must fix things) let alice react when she learns a new rendezvous descriptor let alice launch intro and rend circuits and mark them with her query svn:r1446
* router_choose_random_node can take a smartlist of nodes to excludeRoger Dingledine2004-04-02
| | | | svn:r1442
* now circuit_get_newest returns an appropriate circ for your purposeRoger Dingledine2004-04-02
| | | | | | | | | | connection_ap_handshake_attach_circuit attaches to a circ of the right purpose add a skeletal rendclient.c svn:r1441
* Make smartlist Do What Arma Expects.Nick Mathewson2004-03-30
| | | | svn:r1401
* Remove maximum-size field from smartlistsNick Mathewson2004-03-30
| | | | svn:r1397
* re-enable recommendedversion checking (oops, thanks weasel)Roger Dingledine2004-03-30
| | | | svn:r1376
* Re-enable unit tests for directory generation.Nick Mathewson2004-03-29
| | | | svn:r1362
* there is yet another dns-pending-conn-clobbering bugRoger Dingledine2004-03-28
| | | | | | | somewhere svn:r1354
* make it less noisy to consider exit policiesRoger Dingledine2004-03-27
| | | | svn:r1349
* bugfix: address that strcat vulnerability in circuit.cRoger Dingledine2004-03-14
| | | | svn:r1273
* UnDOSify CRLF->LF.Nick Mathewson2004-03-11
| | | | svn:r1259
* Make OP work on windows! (Also misc logging tweaks)Nick Mathewson2004-03-11
| | | | svn:r1258
* Fix some bugs in parse_timeNick Mathewson2004-03-09
| | | | svn:r1249
* Fix DOS line endings; autoconfize checks for strptime and inet_atonNick Mathewson2004-03-09
| | | | svn:r1248
* Make tor build on windows again. More work still neededNick Mathewson2004-03-09
| | | | svn:r1247
* stop troubling router operators with unapproved router connect attemptsRoger Dingledine2004-03-09
| | | | | | | but give the dirserver operator more information svn:r1246
* re-try streams at most 4 timesRoger Dingledine2004-03-07
| | | | svn:r1242
* New, more flexible directory parsing backend. Uses a bit more RAM, but ↵Nick Mathewson2004-03-05
| | | | | | implements the new spec. Uses more RAM, but not so you would notice. svn:r1235
* Store options->Address as IP, not hostnameRoger Dingledine2004-03-04
| | | | | | | | And figure it out while reading config, not every time you rebuild the descriptor svn:r1226
* bugfix: only warn about an unrouter router after we've fetched a directoryRoger Dingledine2004-02-29
| | | | svn:r1178
* When it can't resolve any dirservers, it was useless from then on.Roger Dingledine2004-02-26
| | | | | | | | Now it reloads the RouterFile (or default dirservers) if it has no dirservers. svn:r1130
* if the default torrc isn't there, just use some default defaultsRoger Dingledine2004-02-26
| | | | | | | | | plus provide an internal dirservers file if they don't have one having no config files will make it easier to run on windows svn:r1124
* Another case of the same.Nick Mathewson2004-02-17
| | | | svn:r1099
* Fix the Big Bug in router_compare_addr_to_exit_policy: we used port 0Nick Mathewson2004-02-17
| | | | | | | | | | to mean "unknown port". But no exit policy supports (nonexistant) port 0, except accept *:*, and we had no special handling for 'unknown port'. Now we do. svn:r1098
* best_support_idx is obsoleteRoger Dingledine2004-02-17
| | | | | | | (also doesn't fix the bug) svn:r1097
* make braces cleaner, bug still persistsRoger Dingledine2004-02-17
| | | | svn:r1095
* Fix router_compare_addr_to_exit_policy, and name its return codes. The bug ↵Nick Mathewson2004-02-17
| | | | | | was: "maybe reject,accept" should be "maybe", not "accept". svn:r1093