summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2008-03-27Add --hush switch.Peter Palfrader
New --hush command-line option similar to --quiet. While --quiet disables all logging to the console on startup, --hush limits the output to messages of warning and error severity. svn:r14222
2008-03-27 r19105@catbus: nickm | 2008-03-27 13:01:47 -0400Nick Mathewson
oops. Note bug number in changelog. svn:r14220
2008-03-27 r19091@catbus: nickm | 2008-03-27 12:42:57 -0400Nick Mathewson
Stop reading torrc when all we want to do is --hash-password. Fix based on patch from Sebastian Hahn. Backport candidate. svn:r14214
2008-03-27 r19089@catbus: nickm | 2008-03-27 11:05:23 -0400Nick Mathewson
Free some static hashtables and the log mutex on exit. Backport candidate. svn:r14212
2008-03-26 r19079@catbus: nickm | 2008-03-26 17:16:46 -0400Nick Mathewson
Free authority certs on exit. Backport candidate. svn:r14205
2008-03-26 r19074@catbus: nickm | 2008-03-26 17:08:32 -0400Nick Mathewson
Start new address policies with refcount of 1, not 2. Backport candidate once tested more. svn:r14204
2008-03-26 r19066@catbus: nickm | 2008-03-26 13:24:15 -0400Nick Mathewson
Initialize logging before we log anything. Bugfix on 0.2.0.x-alpha. svn:r14199
2008-03-26 r19049@catbus: nickm | 2008-03-26 12:33:25 -0400Nick Mathewson
Add new stacklike, free-all-at-once memory allocation strategy. Use it when parsing directory information. This helps parsing speed, and may well help fragmentation some too. hidden-service-related stuff still uses the old tokenizing strategies. svn:r14194
2008-03-25forward-port the 0.2.0.23-rc changelogRoger Dingledine
svn:r14181
2008-03-25 r19039@catbus: nickm | 2008-03-25 12:15:58 -0400Nick Mathewson
Add some unit tests, particularly for AES counter mode. svn:r14180
2008-03-21 r19004@catbus: nickm | 2008-03-21 15:18:43 -0400Nick Mathewson
Use RAND_poll() again: the bug that made us stop using it has been fixed. svn:r14150
2008-03-21 r19003@catbus: nickm | 2008-03-21 15:13:57 -0400Nick Mathewson
Make --enable-gcc-warnings work under the recently released GCC 4.3. svn:r14149
2008-03-19correct the 0.2.0.22-rc changelog in trunkRoger Dingledine
svn:r14118
2008-03-18 r18941@catbus: nickm | 2008-03-18 14:59:43 -0400Nick Mathewson
Likely fix for bug 632: do not call start_reading on a placeholder connection. svn:r14109
2008-03-18 r18937@catbus: nickm | 2008-03-18 14:50:39 -0400Nick Mathewson
Fix the other lingering part of bug 617: make ClientDNSRejectInternalAddresses actually work. svn:r14107
2008-03-18 r18929@catbus: nickm | 2008-03-18 12:08:16 -0400Nick Mathewson
Detect errors from directory listing correctly on win32. Bug found by lodger. svn:r14102
2008-03-18 r18919@catbus: nickm | 2008-03-18 10:53:38 -0400Nick Mathewson
Forward-port bug 622 fix as diagnosed by lodger. svn:r14096
2008-03-18forward-port the 0.2.0.22-rc changelog entry, plus removeRoger Dingledine
some duplicate items. svn:r14086
2008-03-17 r18880@catbus: nickm | 2008-03-17 12:51:24 -0400Nick Mathewson
Fix policy-related crash bug found by lodger. svn:r14077
2008-03-17And use 16k pages on ia64. Maybe this should be a configure thingPeter Palfrader
svn:r14073
2008-03-17 r18872@catbus: nickm | 2008-03-16 23:56:48 -0400Nick Mathewson
Only dump all guard node status to the log when the guard node status actually changes. Downgrade the 4 most common remaining INFO log messages to DEBUG. svn:r14069
2008-03-17 r18862@catbus: nickm | 2008-03-16 23:33:11 -0400Nick Mathewson
Part of fix for bug 617: allow connection_ap_handshake_attach_circuit() to mark connections, to avoid double-mark warnings. Note that this is an incomplete refactoring. svn:r14066
2008-03-17 r18852@catbus: nickm | 2008-03-16 22:47:19 -0400Nick Mathewson
Downgrade "sslv3 alert handshake failure" message to info. svn:r14057
2008-03-17 r18850@catbus: nickm | 2008-03-16 22:35:38 -0400Nick Mathewson
Use 8k pages in openbsd malloc code on alpha. Bug and solution found by weasel. Also, when initializing openbsd malloc code, check that compiled page size matches output of getpagesize(). svn:r14056
2008-03-13 r18793@catbus: nickm | 2008-03-13 14:09:19 -0400Nick Mathewson
Add a malloc_good_size() implementation to OpenBSD_malloc_Linux.c. Also, make configure.in not use support functions for the platform malloc when we are not using the platform mallocs. svn:r14010
2008-03-13Add a changelog entry for rr14003/r14005Peter Palfrader
svn:r14007
2008-03-13Assert that severity in logv() is sane. Interesting effects otherwise (It ↵Peter Palfrader
is being used as an array index) svn:r14006
2008-03-13 r18783@catbus: nickm | 2008-03-13 11:06:45 -0400Nick Mathewson
Oops, do a better fix for that. svn:r14001
2008-03-13 r18781@catbus: nickm | 2008-03-13 11:00:51 -0400Nick Mathewson
Have OpenBSD_malloc_Linux.c use SIZE_T_MAX from torint.h, instead of checking cpu macros. There is always one more cpu you havent checked for. svn:r14000
2008-03-11 r18751@catbus: nickm | 2008-03-11 14:22:43 -0400Nick Mathewson
Fix for bug 614: always look at the network BIO for the SSL object, not at the buffering BIO (if one exists because we are renegotiating or something). Bugfix on 0.1.2.x, oddly enough, though it should be impossible to trigger the problem there. Backport candidate. See comments in tortls.c for detailed implementation note. svn:r13975
2008-03-11 r18747@catbus: nickm | 2008-03-11 13:21:25 -0400Nick Mathewson
Request client certs when renegotiating on server-side. Spotted by lodger. Bugfix on 0.2.0.x. svn:r13973
2008-03-11 r18730@catbus: nickm | 2008-03-11 00:47:04 -0400Nick Mathewson
Forward-port: Fix the SVK version detection logic to work right on a branch: tolerate multiple "copied from" tags and only look at the first. svn:r13959
2008-03-11 r18723@catbus: nickm | 2008-03-11 00:25:30 -0400Nick Mathewson
Fix bug spotted by mwenge: a server_event should not be a sever_event. Also, fix compile errors in config.c and control.c with --enable-gcc-warnings. svn:r13957
2008-03-05 r18630@catbus: nickm | 2008-03-05 17:31:33 -0500Nick Mathewson
Implement domain-selection for logging. Source is documented; needs documentation in manpage (maybe). For now, see doxygen comment on parse_log_severity_config in log.c svn:r13875
2008-03-02forward-port r13799 and the 0.2.0.21-rc changelogRoger Dingledine
svn:r13808
2008-03-01 r18535@catbus: nickm | 2008-03-01 09:58:33 -0500Nick Mathewson
Whoo. People diagnosed and fixed bug 616. See changelog for details. Bugfix on 0.2.0.20-rc. svn:r13793
2008-02-29forward-port r13777Roger Dingledine
svn:r13778
2008-02-27 r18462@catbus: nickm | 2008-02-27 14:15:57 -0500Nick Mathewson
Add better warnings for the error that produced bug 614, and downgrade from a tor_assert() to a tor_fragile_assert(). svn:r13752
2008-02-26a blurb for 0.2.0.20-rcRoger Dingledine
svn:r13732
2008-02-25bump to 0.2.0.20-rctor-0.2.0.20-rcRoger Dingledine
svn:r13715
2008-02-24 r14421@tombo: nickm | 2008-02-24 17:05:18 -0500Nick Mathewson
Patch from mwenge: always willingly serve our own extrainfo from the controlport svn:r13699
2008-02-24 r14419@tombo: nickm | 2008-02-24 16:55:11 -0500Nick Mathewson
Patch from tup: use sizeof sockaddr_un as the size of a unix sockaddr. Fixes unix controlsocket binding on openbsd. svn:r13697
2008-02-23Servers that don't know their own IP address should go to theRoger Dingledine
authorities for their first directory fetch, even if their DirPort is off or if they don't know they're reachable yet. This will help them bootstrap better. Bugfix on 0.2.0.18-alpha; fixes bug 609. svn:r13688
2008-02-22Make "HashedControlPassword" an alias for "__HashedControlSessionPassword"Roger Dingledine
if it appears on the commandline. should help with bug 586. svn:r13683
2008-02-22 r14401@tombo: nickm | 2008-02-22 15:33:42 -0500Nick Mathewson
Fix a really stupid parthensis error noticed by mwenge. svn:r13681
2008-02-22 r14396@tombo: nickm | 2008-02-22 14:07:37 -0500Nick Mathewson
Add --passphrase-fd to tor-gencert. svn:r13679
2008-02-21 r14379@tombo: nickm | 2008-02-21 17:14:24 -0500Nick Mathewson
Enable v2 handshakes. svn:r13666
2008-02-21 r18347@catbus: nickm | 2008-02-21 15:54:40 -0500Nick Mathewson
Make autoconf autodetect -Wshorten-64-to-32 when --enable-gcc-warnings is given to the configure script. svn:r13661
2008-02-21 r18345@catbus: nickm | 2008-02-21 13:45:04 -0500Nick Mathewson
Do the last part of arma's fix for bug 437: Track the origin of every addrmap, and use this info so we can remove all the trackhostexits-originated mappings for a given exit. svn:r13660
2008-02-21 r14362@31-33-219: nickm | 2008-02-21 11:01:10 -0500Nick Mathewson
Change some of our log messages related to closed TLS connections in order to better reflect reality. svn:r13657