aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Remove IVs from cipher code, since AES-ctr has none.Nick Mathewson2004-04-28
| | | | svn:r1742
* use nick's _ARRAYSIZE abstractionRoger Dingledine2004-04-28
| | | | svn:r1741
* nick, is this what you meant?Roger Dingledine2004-04-28
| | | | svn:r1740
* Make Tor build on win32 with VC6 without warnings.Nick Mathewson2004-04-28
| | | | svn:r1739
* bug resolved (hopefully), so remove commentRoger Dingledine2004-04-28
| | | | svn:r1738
* clean dns.c betterRoger Dingledine2004-04-28
| | | | svn:r1737
* fix a bug in dns.c, note but don't fix another oneRoger Dingledine2004-04-28
| | | | svn:r1735
* Workarounds for a couple of pieces of windows strangeness.Nick Mathewson2004-04-28
| | | | svn:r1734
* clean some dead code (right?)Roger Dingledine2004-04-28
| | | | svn:r1733
* some compilers don't like an array of length zeroRoger Dingledine2004-04-27
| | | | | | | | nick: should we remove support for IVs for now, since we don't use them and don't plan to use them? svn:r1732
* set Content-Type on the directory and hidserv descriptorRoger Dingledine2004-04-27
| | | | svn:r1731
* make my assumption explicitRoger Dingledine2004-04-27
| | | | svn:r1730
* it was the second bug that was nailing us.Roger Dingledine2004-04-27
| | | | | | | | | | periodically we expire some circuits if we already have enough, and we were counting rend circs in that number. (the first one wasn't a bug after all) svn:r1729
* don't expire joined-rend circs that have an exit connection attachedRoger Dingledine2004-04-27
| | | | | | | and don't expire non-general excess circuits svn:r1728
* Some versions of openssl have an SSL_pending function that erroneouslyNick Mathewson2004-04-26
| | | | | | | | | | returns bytes when there is a non-application record pending. I have no idea when/why this would even happen, but let's catch it and make sure tor_tls_get_pending_bytes stays correct. svn:r1727
* Log number of bytes pending after read.Nick Mathewson2004-04-26
| | | | svn:r1726
* rendmid says it drops but actually sends nackRoger Dingledine2004-04-26
| | | | | | | fix log messages svn:r1725
* Remove spurious semiNick Mathewson2004-04-26
| | | | svn:r1724
* Add a macro to catch unhandled openssl errors.Nick Mathewson2004-04-26
| | | | svn:r1723
* and other debugsRoger Dingledine2004-04-26
| | | | svn:r1722
* log debug so nick can see it tooRoger Dingledine2004-04-26
| | | | svn:r1721
* The dots are there so you see test doing something. Therefore we should ↵Peter Palfrader2004-04-26
| | | | | | flush them after printing svn:r1720
* add a debugging entry, to find the wants-to-read-but-can't bugRoger Dingledine2004-04-26
| | | | svn:r1719
* Include strerror(errno) with tls syscall errorsNick Mathewson2004-04-26
| | | | svn:r1718
* Refactor crypto error handling to be more like TLS error handling:Nick Mathewson2004-04-26
| | | | | | | | | | | | | crypto_perror is a no-no, since an operation can set more than one error. Also, fix a bug in the unix crypto_seed_rng: mixing stdio with /dev/urandom is a bad idea, since fopen can make all kinds of weird extraneous syscalls (mmap, fcntl, stat64, etc.) and since fread tends to buffer data in big chunks, thus depleting the entropy pool. svn:r1717
* Log pending TLS errors in a couple more places, in case they are possible.Nick Mathewson2004-04-26
| | | | svn:r1716
* tell us when we're rotating thingsRoger Dingledine2004-04-26
| | | | svn:r1712
* since we don't support truncateds much, don't bother sending them;Roger Dingledine2004-04-26
| | | | | | | | | just close the circ. (this wasn't relevant before, because we were mis-handling destroys.) svn:r1711
* fix a bug that's been lurking since 27 may 03 (!)Roger Dingledine2004-04-26
| | | | | | | | when passing back a destroy cell, we would use the wrong circ id. how the heck did this work? svn:r1710
* Call tls_log_errors at a more appropriate location; we can remove the other ↵Nick Mathewson2004-04-26
| | | | | | calls in tor_tls_verify once we are sure they never happen. svn:r1709
* Better error msg on unknown circuit id.Nick Mathewson2004-04-26
| | | | svn:r1708
* Very blunt debugging code: log pending errors at start and end of tor_tls_verifyNick Mathewson2004-04-26
| | | | svn:r1707
* tell us the nickname of the OR that hung up on usRoger Dingledine2004-04-26
| | | | svn:r1706
* Check for machine/limits.h in addition to sys/limits.hNick Mathewson2004-04-25
| | | | svn:r1705
* don't crash, if a conn that sent a begin has suddenly lost its circuitRoger Dingledine2004-04-25
| | | | svn:r1704
* resolve a double-mark-for-close when things die inside connection_handle_writeRoger Dingledine2004-04-25
| | | | svn:r1702
* give us a new dirservers fileRoger Dingledine2004-04-25
| | | | svn:r1700
* 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
* use tor_assert and PUBLIC_KEY_OKRoger Dingledine2004-04-25
| | | | | | | but don't use tor_assert inside log.c, to avoid loops svn:r1696
* Add a tor_assert macro that logs failed assertions.Nick Mathewson2004-04-25
| | | | svn:r1695
* Add assert on crypto_pk_write_private_key,and macros to make sure we have ↵Nick Mathewson2004-04-25
| | | | | | real keys svn:r1694
* 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
* remove spurious router_rebuild_descriptorNick Mathewson2004-04-25
| | | | svn:r1692
* don't build and upload a new desc twice in a rowRoger Dingledine2004-04-25
| | | | svn:r1691
* log correctly if decoding onion failedRoger Dingledine2004-04-25
| | | | svn:r1690
* don't warn when private_decrypt_hybrid failsRoger Dingledine2004-04-25
| | | | svn:r1689
* bugfix: when rotating onion key, do it (more) correctlyRoger Dingledine2004-04-25
| | | | svn:r1688
* more touch-upsRoger Dingledine2004-04-24
| | | | svn:r1687
* Spurious link-key should not be an errorNick Mathewson2004-04-24
| | | | svn:r1686