aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix another typoNick Mathewson2004-11-03
| | | | svn:r2651
* The spelling is "d-e-f-i-n-e".Nick Mathewson2004-11-03
| | | | svn:r2650
* First attempt at hibernation code. It needs more work around the XXXXs, but ↵Nick Mathewson2004-11-02
| | | | | | first I want arma to review the basic approach while I meditate on how to fix them. svn:r2649
* Add compatibility macros for printf and scanf-ing 64-bit unsigned intsNick Mathewson2004-11-02
| | | | svn:r2648
* Handle strlcat/strlcpy correctly on platforms that have them.Nick Mathewson2004-11-02
| | | | svn:r2647
* untabify. This should hold it.Nick Mathewson2004-11-02
| | | | svn:r2646
* Use a stricter set of warnings; make them all pass.Nick Mathewson2004-11-02
| | | | svn:r2645
* canonicalize "src" and "dest" arg order in crypto.c (and others)Roger Dingledine2004-11-02
| | | | svn:r2644
* Fix signed/unsigned comparison warningNick Mathewson2004-11-01
| | | | svn:r2643
* util.c needs ctype.h for tolower and isspaceRoger Dingledine2004-11-01
| | | | svn:r2642
* Hidden service operators had a bug in version 1 style INTRODUCE cellsRoger Dingledine2004-11-01
| | | | | | | | that made them fail. Fix the bug, and revert clients to use version 0 until 0.0.9pre4 is obsolete. svn:r2641
* Split util into util (general utilities), container (smartlist and strmap), ↵Nick Mathewson2004-11-01
| | | | | | and compat (cross-platform compatability). svn:r2640
* make the tarball buildRoger Dingledine2004-11-01
| | | | svn:r2639
* make sure options.MaxConn can be reachedRoger Dingledine2004-11-01
| | | | svn:r2638
* hunt for getrlimit setrlimit sys/time.h sys/resource.hRoger Dingledine2004-11-01
| | | | svn:r2637
* change min required number of fd's to 1024Roger Dingledine2004-11-01
| | | | svn:r2636
* make our autogen.sh work on ksh as well as bashRoger Dingledine2004-11-01
| | | | svn:r2635
* clean up confusing instructionRoger Dingledine2004-10-31
| | | | svn:r2634
* fix 'make dist' so it works againRoger Dingledine2004-10-31
| | | | svn:r2633
* stop trying to maintain two separate doc sectionsRoger Dingledine2004-10-31
| | | | | | | now README points to tor-doc.html svn:r2632
* oh, and add the actual file tooRoger Dingledine2004-10-31
| | | | svn:r2631
* implement first piece of hibernationRoger Dingledine2004-10-31
| | | | | | | still need to track bandwidth, and make decisions based on bandwidth svn:r2630
* Only tor and test binaries need to link against openssl and zlib; ↵Nick Mathewson2004-10-30
| | | | | | tor-resolve can be smaller. svn:r2629
* Move all util functions that need openssl into crypto.c; make non-openssl ↵Nick Mathewson2004-10-30
| | | | | | functions that util needs into util. Now openssl can be separated. svn:r2628
* tor --list-fingerprint to print fingerprint and exitNick Mathewson2004-10-30
| | | | svn:r2627
* add a note to the doc telling openbsd folks that their fd limit isRoger Dingledine2004-10-30
| | | | | | | too low svn:r2626
* Add TODO item: gripe early when fd limits are low, rather than blowing up ↵Nick Mathewson2004-10-30
| | | | | | when we run out svn:r2625
* Fix paul gardner's assert bug. Turns out when circuit_launch_by_nickname()Roger Dingledine2004-10-30
| | | | | | | | | failed at the first hop, it would try to relaunch another circ right then, even though the first circuit hadn't been populated yet with its pending_final_cpath. svn:r2624
* Link tools directory into rest of build systemNick Mathewson2004-10-28
| | | | svn:r2623
* Note item completionNick Mathewson2004-10-28
| | | | svn:r2622
* Rename Python tor-resolve to tor-resolve.py; stop installing it; move ↵Nick Mathewson2004-10-28
| | | | | | tor-resolve manpage to doc directory svn:r2621
* Add a pure-C tor-resolve implementationNick Mathewson2004-10-28
| | | | svn:r2620
* Mark item completedNick Mathewson2004-10-28
| | | | svn:r2619
* Tweaks to prevent obsolete restarting tors from hammering the dirservers. ↵Nick Mathewson2004-10-28
| | | | | | (1) Cache a received directory as soon as the signature checks out. (2) Treat a cached directory as "recent" based on its mtime. (3) If we have a recent directory, we dont need to fetch a newer one for DirFetchPostPeriod. This needs review! svn:r2618
* Fix in warning fixNick Mathewson2004-10-27
| | | | svn:r2617
* Check return of tor_snprintfNick Mathewson2004-10-27
| | | | svn:r2616
* Tricksy compiler warnings! We hates them, hates them forever, my precious!Nick Mathewson2004-10-27
| | | | svn:r2615
* Pass with -Wstrict-prototypesNick Mathewson2004-10-27
| | | | svn:r2614
* Fix windows buildNick Mathewson2004-10-27
| | | | svn:r2613
* Add ability for some-but-not-all abbrevs to work in config file. Add a ↵Nick Mathewson2004-10-27
| | | | | | bunch of singular/plural abbrevs suggested by arma svn:r2612
* stop freeing arbitrary memoryRoger Dingledine2004-10-27
| | | | | | | fix a couple of memory leaks svn:r2611
* Use strlcpy, not strcpy.Nick Mathewson2004-10-27
| | | | svn:r2610
* Use tor_snprintf, not snprintfNick Mathewson2004-10-27
| | | | svn:r2609
* clean up todo file some moreRoger Dingledine2004-10-27
| | | | svn:r2608
* document dirpolicy config optionRoger Dingledine2004-10-27
| | | | svn:r2607
* snprintf wrapper with consistant (though not C99) overflow behaviorNick Mathewson2004-10-27
| | | | svn:r2606
* Avoid strcat; use snprintf or strlcat insteadNick Mathewson2004-10-27
| | | | svn:r2605
* setting up your own tor network is much simpler nowRoger Dingledine2004-10-27
| | | | svn:r2604
* Use strlcpy, not strncpyNick Mathewson2004-10-27
| | | | svn:r2603
* Replace sprintf with snprintfNick Mathewson2004-10-27
| | | | svn:r2602