aboutsummaryrefslogtreecommitdiff
path: root/src/common
Commit message (Collapse)AuthorAge
* Fix a bug in HT_REMOVE.Nick Mathewson2006-07-27
| | | | svn:r6925
* Get better numbers out of HT_REP_OKNick Mathewson2006-07-27
| | | | svn:r6924
* Remove .cvsignore files from trunkPeter Palfrader2006-07-25
| | | | svn:r6891
* Whitespace fixNick Mathewson2006-07-23
| | | | svn:r6816
* Add a mem_is_zero function (I think we will need this) and a STRUCT_OFFSET ↵Nick Mathewson2006-07-23
| | | | | | macro (we already need this). svn:r6810
* Another MSVC6 fix. Grnk.Nick Mathewson2006-07-21
| | | | svn:r6802
* Hm. We probably should define INT64_MAX if we really want it. (Especially ↵Nick Mathewson2006-07-18
| | | | | | since we only want it on one platform, where, coincidentally, it is not defined.) svn:r6784
* MSVC6 is apparently terrified of unnatural cross-breeding between uint64_t ↵Nick Mathewson2006-07-17
| | | | | | and double, and needs more persuasion than usual to cast one to the other. Issue identified by Frediano Ziglio; patch revised for minimal impact on non-MSVC6 compilers. svn:r6768
* stick to nick's nul/null conventionRoger Dingledine2006-07-15
| | | | svn:r6763
* Make compilation work on old MSVCs without GetVertsionEx magic. Patch from ↵Nick Mathewson2006-07-09
| | | | | | Frediano Ziglio. svn:r6749
* when an exit node gets a malformed begin cell, don't complain toRoger Dingledine2006-07-06
| | | | | | | the node operator, since he can't do anything about it. svn:r6733
* ok, i'm not allowed to say that there. oh well.Roger Dingledine2006-07-04
| | | | svn:r6720
* fix a misleading function commentRoger Dingledine2006-07-04
| | | | svn:r6717
* if we're the server-side of the tls and there are problems,Roger Dingledine2006-07-04
| | | | | | | don't yell as loudly. svn:r6716
* minor fixesRoger Dingledine2006-07-04
| | | | svn:r6710
* Harmless: Z_OK is not an acceptable answer to Z_FINISH.Nick Mathewson2006-06-29
| | | | svn:r6701
* Actually enable mmap. That should improve matters.Nick Mathewson2006-06-28
| | | | svn:r6694
* Apparently, zlib sometimes reports Z_BUF_ERROR on input exhaustion as well ↵Nick Mathewson2006-06-24
| | | | | | as on running out of output space. This could well fix the assert bug reported by weasel and arma. svn:r6682
* Ooh, that could have been bad. Sort digests as digests, not strings.Nick Mathewson2006-06-22
| | | | svn:r6679
* When requesting or serving resources via fingerprint/digest, request and ↵Nick Mathewson2006-06-21
| | | | | | respond in-order, removing duplicates. svn:r6673
* remove non-germane commentNick Mathewson2006-06-18
| | | | svn:r6640
* perhaps the reason I rail against cut-and-paste programming so vehemently is ↵Nick Mathewson2006-06-18
| | | | | | that I am so bad at it. svn:r6638
* Add some incremental encryption wrappers to torgzip codeNick Mathewson2006-06-18
| | | | svn:r6636
* Add a memdup function to utilNick Mathewson2006-06-18
| | | | svn:r6635
* Add smartlist_reverse and smartlist_pop_last.Nick Mathewson2006-06-18
| | | | svn:r6634
* Another escape() fix, for picky sprintfs.Nick Mathewson2006-06-09
| | | | svn:r6579
* Override our notion of printability for esc_for_log. 127 and up are never ↵Nick Mathewson2006-06-09
| | | | | | printable. Take that, locales. svn:r6578
* Bandaid for a seg fault i just got in 0.1.1.20.Roger Dingledine2006-06-09
| | | | | | | More generally, i reopened bug 222. Whee. svn:r6571
* and now the exciting part: there is now no such thing as doingRoger Dingledine2006-06-07
| | | | | | | a client-only tls, that is, one with no certs. svn:r6558
* simplify the tortls api: we only support being a "server", thatRoger Dingledine2006-06-07
| | | | | | | | | | is, even tor clients do the same sort of handshake. this has been true for years, so it's best to get rid of the stale code. svn:r6557
* looks like we missed a piece of the 0.1.1.9 paranoia code.Roger Dingledine2006-06-07
| | | | | | | hopefully this change is a no-op. svn:r6556
* simplify code now that libevent considers all sockets pollable.Roger Dingledine2006-06-05
| | | | | | | what we really mean now is ">= 0", which is clearer to test for. svn:r6543
* bandaid for bug 299. this is still a bug, since we don'tRoger Dingledine2006-06-05
| | | | | | | | initialize for hardware acceleration in certain configurations; but not critical until that is supported. svn:r6536
* Add a new warning to our "warn a lot" list: unused parameters. This means ↵Nick Mathewson2006-06-04
| | | | | | we have to explicitly "use" unuseds, but it can catch bugs. (It caught two coding mistakes so far.) svn:r6532
* More DNS fixes. Send meaningful TTLs back to the client whenNick Mathewson2006-06-03
| | | | | | | | | | | possible. Cache at the server side independently from the TTL, to prevent attackers from probing the server to see who has been asking for what hostnames. (Hi, Dan Kaminski!) Also, clean some whitespace. svn:r6526
* Patch based on post by Mike C to or-dev; special-case based on use of MSVC, ↵Nick Mathewson2006-06-03
| | | | | | rather than on MS_WINDOWS, so that mingw builds. svn:r6523
* Add a basic mmap function, with a "fake-it" wrapper to do read_file_from_str ↵Nick Mathewson2006-05-28
| | | | | | instead. Based on code from Michael Mohr. svn:r6510
* if we're a server and some peer has a broken tls certificate, don'tRoger Dingledine2006-05-26
| | | | | | | shout about it unless we want to hear about protocol violations. svn:r6507
* resolve an unused variableRoger Dingledine2006-05-26
| | | | svn:r6503
* Stop being picky about what the arguments to mapaddress look like.Roger Dingledine2006-05-25
| | | | | | | | | we were refusing names that had $ in them, which people who specify $key.exit will be sad about. There are likely other examples. If people can think of reasons why we should be picky, let me know. svn:r6496
* Stop initializing the hardware accelerator engines simply becauseRoger Dingledine2006-05-24
| | | | | | | we overloaded the meaning of the argument to crypto_global_init(). svn:r6490
* Claim a commonname of Tor, rather than TOR, in tls handshakes.Roger Dingledine2006-05-24
| | | | | | | Maybe this will help us win the war of names. svn:r6489
* Throw out this UNALIGNED_INT_ACCESS_OK nonsense. Even where it works, it is ↵Nick Mathewson2006-05-23
| | | | | | often way way slower than doing the right thing. Backport candidate. svn:r6473
* All these headers we get via torint.hPeter Palfrader2006-05-10
| | | | svn:r6452
* mainline branch. Remove some more dead XXXs.Nick Mathewson2006-04-18
| | | | svn:r6401
* Remove DER64 functions in trunk: they will never be used again unless the ↵Nick Mathewson2006-04-10
| | | | | | directory authorities switch back to 0.0.9tooearly. svn:r6376
* "" is not a plausible address for addressmaps.Roger Dingledine2006-04-03
| | | | svn:r6299
* Avoid warnings about machine/limits.h on Debian GNU/kFreeBSDPeter Palfrader2006-03-29
| | | | svn:r6271
* clean up the traces from tracking the 0.1.1.9-alpha stack-smashing bug.Roger Dingledine2006-03-26
| | | | svn:r6240
* failing in a support function is a warn, not an err.Roger Dingledine2006-03-26
| | | | svn:r6239