aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Do not generate the non-verbose circuit path when generating a circuit event ↵Nick Mathewson2009-03-18
| | | | | | unless we will use it. svn:r19079
* If we have a routerstatus but no routerinfo to name a router, use the ↵Nick Mathewson2009-03-18
| | | | | | routerstatus instead when generating circuit events. Also refactor a little. svn:r19078
* Add a function to get a LongName from a routerstatus. Needed for partial ↵Nick Mathewson2009-03-18
| | | | | | bug 941 fix. svn:r19077
* Clarify that the nickname part of a LongName is indeed optional.Nick Mathewson2009-03-18
| | | | svn:r19076
* Add some asserts to try to catch bug 930Nick Mathewson2009-03-18
| | | | svn:r19074
* Don't double-free successful_uploads.Nick Mathewson2009-03-18
| | | | | | | | | | When we used smartlist_free to free the list of succesful uploads because we had succeeded in uploading everywhere, we did not actually set the successful_uploads field to NULL, so later it would get freed again in rend_service_descriptor_free. Fix for bug 948; bug introduced in 0.2.1.6-alpha. svn:r19073
* Free very-old descriptors that we do not want to add. Fix for bug 672. ↵Nick Mathewson2009-03-16
| | | | | | Backport candidate svn:r19057
* The override file is always correctPeter Palfrader2009-03-16
| | | | svn:r19053
* Update translation doc with info on two options for newMike Perry2009-03-16
| | | | | | | | | string creation workflow. It is unclear at this point which of the two are the lesser evil, so both are included. svn:r19037
* remove the advocacy docs from tor/trunkAndrew Lewman2009-03-15
| | | | svn:r19006
* New upstream versionPeter Palfrader2009-03-15
| | | | svn:r18999
* Set svn:mime-type property of PDF documents to "application/pdf" so that ↵Steven Murdoch2009-03-13
| | | | | | they open in the Acrobat plugin svn:r18962
* cut out a lot of the external todo items, since they're doneRoger Dingledine2009-03-13
| | | | svn:r18959
* add the doc files to a real doc directory.Andrew Lewman2009-03-13
| | | | svn:r18952
* add in the blurbRoger Dingledine2009-03-13
| | | | svn:r18945
* Add the pdf of the roadmap to the right section of docs.Andrew Lewman2009-03-12
| | | | svn:r18941
* Make directory usage recording work again. Fixing bug introduced in r17009.Karsten Loesing2009-03-11
| | | | svn:r18924
* when we get an unrecognized relay streamid, log itRoger Dingledine2009-03-11
| | | | svn:r18919
* Update the bundle installers for the MSI packages; these probably belong ↵Martin Peck2009-03-10
| | | | | | with the wxs files in the Vidalia repo. svn:r18849
* In tor-resolve, when the Tor client to use is specified by ↵Steven Murdoch2009-03-10
| | | | | | <hostname>:<port>, actually use the specified port rather than defaulting to 9050 svn:r18833
* Bugfix on r17756:Roger Dingledine2009-03-09
| | | | | | | | | Avoid trying to print raw memory to the logs when we decide to give up on downloading a given relay descriptor. Bugfix on 0.2.1.9-alpha. svn:r18831
* bump to 0.2.1.13-alpha-devRoger Dingledine2009-03-09
| | | | svn:r18830
* Log cached-at-exit exit policies to try to fix bug 672.Nick Mathewson2009-03-09
| | | | svn:r18827
* doxygen tweakRoger Dingledine2009-03-09
| | | | svn:r18818
* bump to 0.2.1.13-alphaRoger Dingledine2009-03-09
| | | | svn:r18814
* 3! 3 not 2.Roger Dingledine2009-03-09
| | | | svn:r18813
* We were already rejecting relay begin cells with destination portRoger Dingledine2009-03-09
| | | | | | | | of 0. Now also reject extend cells with destination port or address of 0. Suggested by lark. svn:r18812
* declare that i'm going to tag 0.2.1.13-alpha tonightRoger Dingledine2009-03-09
| | | | svn:r18811
* Build correctly from outside main source tree. Patch from Michael Gold.Nick Mathewson2009-03-08
| | | | svn:r18809
* Remove contrib/tor.wxs from AC_CONFIG_FILES. The file is gone.Karsten Loesing2009-03-06
| | | | svn:r18791
* Move wxs files to vidalia trunk for integration with existing bundle ↵Martin Peck2009-03-06
| | | | | | translations. svn:r18789
* Update to the "February 26 2009" ip-to-country fileRoger Dingledine2009-03-05
| | | | svn:r18774
* Actually use tor_sscanf() to parse untrusted input.Nick Mathewson2009-03-03
| | | | svn:r18761
* Add a simple locale-independent no-surprises sscanf replacement.Nick Mathewson2009-03-03
| | | | | | | | | | tor_sscanf() only handles %u and %s for now, which will make it adequate to replace sscanf() for date/time/IP parsing. We want this to prevent attackers from constructing weirdly formed descriptors, cells, addresses, HTTP responses, etc, that validate under some locales but not others. svn:r18760
* Add and use set/get_uint64 on onion tags. [bug 604; backportable]Nick Mathewson2009-03-02
| | | | | | | | | It seems that 64-bit Sparc Solaris demands 64-bit-aligned access to uint64_t, but does not 64-bit-align the stack-allocated char array we use for cpuworker tags. So this patch adds a set/get_uint64 pair, and uses them to access the conn_id field in the tag. svn:r18743
* minor updates and questions.Andrew Lewman2009-02-27
| | | | svn:r18705
* Fix one case of bug 929.Nick Mathewson2009-02-23
| | | | svn:r18683
* Add some debugging code to try to catch the likely cause of bug 929Nick Mathewson2009-02-23
| | | | svn:r18682
* Updated the description text, changed packager emailAndrew Lewman2009-02-23
| | | | svn:r18675
* Patch from lark: if we get two extend cells for the same circuit id, drop ↵Nick Mathewson2009-02-21
| | | | | | the second. Previously, we had leaked an extend_info if the target connection was not open when the second arrived. svn:r18668
* Patch from lark: drop BEGIN cells from a rendevous circuit if they do not ↵Nick Mathewson2009-02-21
| | | | | | originate from the end of the circuit. svn:r18667
* send the newconsensus event if the controller has asked for newconsensusRoger Dingledine2009-02-20
| | | | | | | events, not if he's asked for ns events svn:r18656
* typoRoger Dingledine2009-02-17
| | | | svn:r18610
* add proposal 159, 'exit scanning', from or-devRoger Dingledine2009-02-17
| | | | svn:r18609
* Possible fix for broken country settings in ExcludeExitNodes.Nick Mathewson2009-02-16
| | | | | | | | It turns out that we weren't updating the _ExcludeExitNodesUnion set's country numbers when we reloaded (or first loaded!) the IP-to-country file. Spotted by Lark. Bugfix on 0.2.1.6-alpha. svn:r18575
* Remove Makefile rule for building performance.tex (now in /projects/performance)Steven Murdoch2009-02-16
| | | | svn:r18568
* docdoc and changelog for r18556Roger Dingledine2009-02-16
| | | | svn:r18566
* and two more things to moveRoger Dingledine2009-02-16
| | | | svn:r18564
* move performance.tex overRoger Dingledine2009-02-16
| | | | | | | boy, what a convoluted thing svn is svn:r18563
* and list the new event here tooRoger Dingledine2009-02-16
| | | | svn:r18557