aboutsummaryrefslogtreecommitdiff
path: root/src
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
* 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
* 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
* 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
* 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
* Move in-addr.arpa parsing and generation into address.c, and simplify the ↵Nick Mathewson2008-12-19
| | | | | | code that does it elsewhere. Incidentally, this lets exit servers answer requests for ip6.arpa addresses. svn:r17707
* Expose hex_decode_digit from util.cNick Mathewson2008-12-19
| | | | svn:r17706
* When we need to open a new origin circuit, log why.Nick Mathewson2008-12-19
| | | | svn:r17705
* Doc RRS_DONT_REMOVE_OLD; improve router_rebuild_store documentation.Nick Mathewson2008-12-19
| | | | svn:r17704
* More approx_time() calls. Noted by forest.Nick Mathewson2008-12-19
| | | | svn:r17702
* Make cell pools always-on.Nick Mathewson2008-12-18
| | | | svn:r17692
* Why were we using gettimeofday() in second_elapsed_callback? We were only ↵Nick Mathewson2008-12-18
| | | | | | ever looking at the tv_sec field. svn:r17691
* Replace calls to time(NULL) that occur on the order of once per read, one ↵Nick Mathewson2008-12-18
| | | | | | per write, or once per cell with calls to a function that looks at a cached value of time. This is tricksy to benchmark, since it will only help on systems where time() is a syscall and syscalls are relatively slow. svn:r17690
* Document the purpose argument of circuit_find_to_cannibalizeNick Mathewson2008-12-18
| | | | svn:r17689
* One log.c XXX021 was a misunderstanding. Also, clip log messages passed to ↵Nick Mathewson2008-12-18
| | | | | | syslog to their maximum length when there is a maximum. svn:r17688
* Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this ↵Nick Mathewson2008-12-18
| | | | | | patch. svn:r17686
* Ben confirms that the MUST in rfc2631 is only for compatibility with X9.42, ↵Nick Mathewson2008-12-18
| | | | | | and isn't actually a security thing. svn:r17685