aboutsummaryrefslogtreecommitdiff
path: root/src/or
Commit message (Collapse)AuthorAge
...
* authorities do not replace server descriptors where nothing semantically ↵Nick Mathewson2005-10-12
| | | | | | relevant has changed since the last upload. svn:r5240
* Funny. I could have sworn it compiled this morning when I checked it in.Nick Mathewson2005-10-12
| | | | svn:r5239
* More work towards a sane digest-based liveness testing.Nick Mathewson2005-10-12
| | | | svn:r5238
* Add an as-yet-unused "EXTENDED" flag to SETEVENTS to indicate that the ↵Nick Mathewson2005-10-12
| | | | | | client can handle extra labeled info in its events. Add moreinfo to the "what is ready for downloading" msg so we can investigate digest-related download rules svn:r5237
* Do not check whether DirPort is reachable when we are suppressing it because ↵Nick Mathewson2005-10-12
| | | | | | of hibernation. (Backport candidate) svn:r5235
* add some docs; if warn_if_unnamed is 0, really do not warn.Nick Mathewson2005-10-11
| | | | svn:r5234
* Insert a newline between all router descriptors when generating (old style) ↵Nick Mathewson2005-10-08
| | | | | | signed directories, in case somebody was counting on that. svn:r5231
* Now that directory admins assure me they have adjested teir configs, it is ↵Nick Mathewson2005-10-08
| | | | | | safe to make authorities be non-versioning, non-naming by default. svn:r5230
* do not try to download a routerdesc if we would immediately reject it as ↵Nick Mathewson2005-10-07
| | | | | | obsolete. svn:r5225
* Warn less about intro nodes by nickname; remember our own intro nodes by key.Nick Mathewson2005-10-07
| | | | svn:r5224
* fix a malformed warning entryRoger Dingledine2005-10-07
| | | | svn:r5219
* doxygen fixRoger Dingledine2005-10-07
| | | | svn:r5217
* you can't declare variables in the middle of a blockRoger Dingledine2005-10-07
| | | | svn:r5214
* Print address too when we say we cannot bind/listenPeter Palfrader2005-10-07
| | | | svn:r5213
* Strip extra trailing newlines when parsing router descriptors.Nick Mathewson2005-10-07
| | | | svn:r5212
* Once an hour (not just on startup) give OpenSSL some more entropy.Nick Mathewson2005-10-06
| | | | | | | | Add entropy in 512-bit chunks, not 160-bit chunks. (This latter change is voodoo.) svn:r5211
* Using RAND_pseudo_bytes instead of RAND_bytes is an accident waiting to ↵Nick Mathewson2005-10-06
| | | | | | happen, and does not really speed us up much when we do it. So stop doing it. svn:r5210
* without braces, what will hold up the code?Roger Dingledine2005-10-06
| | | | svn:r5209
* Make doxygen marginally happierNick Mathewson2005-10-06
| | | | svn:r5208
* Rate-limit warnings related to unrecognized MyFamily elements.Nick Mathewson2005-10-05
| | | | svn:r5204
* On sighup, if usehelpernodes changed to 1, use new circuits.Nick Mathewson2005-10-05
| | | | svn:r5203
* call circuit_expire_all_dirty_circs() on do_hup().Roger Dingledine2005-10-05
| | | | | | | there, now we use it. svn:r5202
* I *knew* something was wrong here. Flip some comparison operators and make ↵Nick Mathewson2005-10-05
| | | | | | download-rate-limiting sane again. svn:r5201
* Downgrade too-frequent "nothing happened" message from info to debugNick Mathewson2005-10-05
| | | | svn:r5200
* infrastructure for the 'change pseudonym' button.Roger Dingledine2005-10-05
| | | | | | | not used yet. svn:r5199
* improve INFO-level logging for directory downloads. This is still too ↵Nick Mathewson2005-10-05
| | | | | | chatty, but it will help us analyze things. svn:r5197
* replace former relaunches of directory downloads with reset of failure count ↵Nick Mathewson2005-10-05
| | | | | | and relaunch of status downloads. Fix memory leak in trusted_dir_server_t. Reset "last download attempted" time when resetting failure counts. svn:r5195
* size_t int printf muckingRoger Dingledine2005-10-05
| | | | svn:r5194
* Note the two places where clients will still try to fetch old-style (v1) ↵Nick Mathewson2005-10-05
| | | | | | directory info. These should be fixed, I think. svn:r5193
* reset warning flags on SIGHUP. arma: is this everything?Nick Mathewson2005-10-05
| | | | svn:r5192
* stutter therapy lessonsRoger Dingledine2005-10-05
| | | | svn:r5191
* Fix verbose compiler warnings, including one in routerlist.c that would have ↵Nick Mathewson2005-10-05
| | | | | | been an actual error. Normalize whitespace. Enforce convention that "address" is a hostname and "addr" is an IPv4 address. svn:r5190
* resolve some directory-related XXXXs; downgrade naming conflict messages ↵Nick Mathewson2005-10-05
| | | | | | from WARN to INFO for non-authorities; do not repeat naming conflict messages. svn:r5189
* Downgrade noisy log messages in preparation for an alpha release.Nick Mathewson2005-10-05
| | | | svn:r5188
* Give a less frequent and more helpful warning on failed serverdesc downloadsNick Mathewson2005-10-05
| | | | svn:r5187
* When we get an EOF or a timeout on a directory connection, note how many ↵Nick Mathewson2005-10-04
| | | | | | bytes of serverdesc we are dropping. This will help us determine whether it is smart to parse incomplete serverdesc responses. svn:r5186
* Check for named servers when looking them up by nickname;Nick Mathewson2005-10-04
| | | | | | | | | | | | | | | | | | | warn when we'recalling a non-named server by its nickname; don't warn twice about the same name. Fix a bug in routers_update_status_from_networkstatus that made nearly all clients never update routerinfo_t.is_named. Try to list MyFamily elements by key, not by nickname. Only warn about names that we generated ourself, or got from the local user. On TLS handshake, only check the other router's nickname against its expected nickname if is_named is set. svn:r5185
* link nicknames to trusted directory servers; log these nicknames when ↵Nick Mathewson2005-10-04
| | | | | | mentioning servers; also, when we get a naming conflict; log which nicknames or keys are supposed to bind. svn:r5184
* cosmetic fix: only have one local to hold smartlist_len(downloadable), not too.Nick Mathewson2005-10-04
| | | | svn:r5183
* switch semantics of authdirinvalid/rejectNick Mathewson2005-10-04
| | | | svn:r5182
* comment cleanupsRoger Dingledine2005-10-04
| | | | svn:r5181
* Reorganize some quick-and-dirty code to find out what openssl stuff is ↵Nick Mathewson2005-10-03
| | | | | | leaking, using dmalloc. svn:r5178
* free helper node status info on shutdownNick Mathewson2005-09-30
| | | | svn:r5177
* remove a never-used smartlist in routerlist.cNick Mathewson2005-09-30
| | | | svn:r5176
* and another leak.Nick Mathewson2005-09-30
| | | | svn:r5175
* by convention, addr is a uint32_t and address is a string.Roger Dingledine2005-09-30
| | | | | | | that's why we hadn't caught that leak. svn:r5174
* Fix a leak when launching listeners.Nick Mathewson2005-09-30
| | | | svn:r5173
* Try to hunt down a few more leaksNick Mathewson2005-09-30
| | | | svn:r5172
* Stop leaking or_state_t on shutdown.Nick Mathewson2005-09-30
| | | | svn:r5171
* fix a small filename leakNick Mathewson2005-09-30
| | | | svn:r5170