aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Remove a deprecated controller alias; make another one generate a warning.Nick Mathewson2008-12-27
| | | | svn:r17793
* Make connection_create_listener take a sockaddr_len, not just a sockaddr ↵Nick Mathewson2008-12-27
| | | | | | whose length we try to divine. svn:r17792
* Add some early checks to keep ipv6 addresses from failing by accident. Now, ↵Nick Mathewson2008-12-26
| | | | | | they fail on purpose, at least till 0.2.2.something. svn:r17791
* Refactor tor_addr_t manipulation functions so that as few as possible look ↵Nick Mathewson2008-12-26
| | | | | | at the tor_addr_t representation. svn:r17790
* get_interface_addr6(), and by extension get_interface_addr(), were pretty ↵Nick Mathewson2008-12-26
| | | | | | borked. Copying a tor_addr_t from a sockaddr_storage using memcpy is a poor notion. svn:r17789
* Refactor tor_addr_compare_masked() so that CMP_SEMANTIC makes more sense, ↵Nick Mathewson2008-12-26
| | | | | | and has decent semantics for maskbits; and so that CMP_EXACT works right for bits==0. svn:r17788
* Bump version to 0.2.1.9-alpha-devNick Mathewson2008-12-26
| | | | svn:r17787
* Document and make more conservative the logic for picking the size of the ↵Nick Mathewson2008-12-26
| | | | | | bloom filter to use for retaining descriptors. svn:r17786
* Document our Bloom filter parameter choices.Nick Mathewson2008-12-26
| | | | svn:r17785
* Document the pk operation count fields in rephist.c, and move them into a ↵Nick Mathewson2008-12-26
| | | | | | struct for clarity, and change their type to what we actually want to cast them to. svn:r17784
* Add more missing documentation, and correct an error in container.c ↵Nick Mathewson2008-12-26
| | | | | | documentation: Don't introduce two parameters called n when you're calling an algorithm O(n). svn:r17783
* last cleanupsRoger Dingledine2008-12-25
| | | | svn:r17779
* prepare for 0.2.1.9-alphaRoger Dingledine2008-12-25
| | | | svn:r17778
* ok, fair enough, some of these variables were time_t's after allRoger Dingledine2008-12-25
| | | | svn:r17777
* so which is it? TIME_MAX or INT_MAX? pick INT_MAX for now.Roger Dingledine2008-12-25
| | | | svn:r17772
* some fixes i found in my sandboxRoger Dingledine2008-12-25
| | | | svn:r17771
* Add discussion on how network latency changes when the network load differs ↵Steven Murdoch2008-12-25
| | | | | | from the level that the node selection algorithm was designed for svn:r17769
* Add R script for estimating average node latency at different levels of ↵Steven Murdoch2008-12-25
| | | | | | network load svn:r17768
* propset on our new todo lists. why can't svn just know what i mean.Roger Dingledine2008-12-25
| | | | svn:r17766
* Discussion on optimizing the node selection probabilitiesSteven Murdoch2008-12-24
| | | | svn:r17763
* Annotate relative-selection-probabilities graphSteven Murdoch2008-12-24
| | | | svn:r17762
* Add R code for plotting optimized node selection probabilitiesSteven Murdoch2008-12-24
| | | | svn:r17761
* Changelog entries for bug 891 fix as checkpointed.Nick Mathewson2008-12-24
| | | | svn:r17759
* Use the literal parse of an address in dns_resolve_impl if parsing the ↵Nick Mathewson2008-12-24
| | | | | | address as an ipv4 or ipv6 address _succeeded_. Not if it failed. Bug introduced in r17707 (post 0.2.1.8-alpha), and found by xiando. svn:r17758
* Checkpoint my big bug-891 patch.Nick Mathewson2008-12-24
| | | | svn:r17757
* Patch from Sebiastian for bug 888: mark a descriptor as "Impossible" if we ↵Nick Mathewson2008-12-23
| | | | | | reject it after downloading it so that we do not download it again svn:r17756
* Remove bogus extern declaration for unused (and nonexistant) field from test.cNick Mathewson2008-12-23
| | | | svn:r17755
* Document most undocumented variables.Nick Mathewson2008-12-23
| | | | svn:r17754
* Properly zero-out addresses when setting them. Probably this was not ↵Nick Mathewson2008-12-23
| | | | | | hurting anything. svn:r17749
* Make freelist_len in memarea.c static; document a few variables.Nick Mathewson2008-12-22
| | | | svn:r17741
* Expose bench_* functions via test cliNick Mathewson2008-12-22
| | | | svn:r17740
* Add DOCDOC entries for undocumented static and global variables.Nick Mathewson2008-12-22
| | | | svn:r17739
* Oops; add missing return to redox.pyNick Mathewson2008-12-22
| | | | svn:r17737
* Better documentation for contrib/redox.pyNick Mathewson2008-12-22
| | | | svn:r17736
* Make doxygen not complain about the way we spell CRLFNUL in control.cNick Mathewson2008-12-22
| | | | svn:r17735
* Fix most DOCDOCs remaining and/or added by redox.Nick Mathewson2008-12-22
| | | | svn:r17734
* Documentation and conformance for WRA_* returns.Nick Mathewson2008-12-22
| | | | | | | | | shahn: "Add some documentation for the WRA_* family of functions, also make sure that (hopefully) all functions that return was_router_added_t don't return ints directly and that they don't refer to integers in their documentation anymore." svn:r17731
* Partially apply bug 891 parch from forest: check EXTEND cell address against ↵Nick Mathewson2008-12-22
| | | | | | real_addr, not addr. I have questions about the rest of the patch: see the flyspray entry. svn:r17730
* Add DOCDOC comments for all undocumented functions. Add missing *s to other ↵Nick Mathewson2008-12-22
| | | | | | comments so that they will get recognized as doxygen. svn:r17729
* Add a script to post-process doxygen output into a sensible form and add ↵Nick Mathewson2008-12-22
| | | | | | DOCDOC comments to our source files. svn:r17728
* Fix all of the doxygen warnings not pertaining to missing documentation.Nick Mathewson2008-12-22
| | | | svn:r17727
* fix typo noticed by woodRoger Dingledine2008-12-22
| | | | svn:r17726
* some windows users are outraged that tor refuses to work evenRoger Dingledine2008-12-22
| | | | | | | | when their clock and date are correct, if their timezone is totally wrong. now we at least tell them. svn:r17725
* the default should not be the notify the poster, unless somethingRoger Dingledine2008-12-22
| | | | | | | | | | | more extreme happens. the default should be to be quiet unless something more extreme happens. at least, this doesn't generate complaints anymore. perhaps that means it is working better? :) svn:r17724
* fix a fun bug on r17656 that was making us send HTTP/1.0 404 asRoger Dingledine2008-12-22
| | | | | | | | the message body, no matter the message headers, when answering a descriptor or extrainfo post request. svn:r17723
* Yet still more propagating of things that need to be was_router_added_t now.Nick Mathewson2008-12-22
| | | | svn:r17722
* More propagating of things that need to be was_router_added_t now.Nick Mathewson2008-12-22
| | | | svn:r17721
* WRA_MORE_SEVERE is not WRA_GET_MORE_SEVERE.Nick Mathewson2008-12-22
| | | | svn:r17720
* gabelmoo has a new IP address (once more).Karsten Loesing2008-12-22
| | | | svn:r17717
* mark done an item that sebastian didRoger Dingledine2008-12-21
| | | | svn:r17716