aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
Commit message (Expand)AuthorAge
...
| * | | | answer an XXX nickm asked in aa950e6c4Roger Dingledine2011-05-29
| |/ / /
* | | | Merge branch 'maint-0.2.2'Roger Dingledine2011-05-20
|\| | |
| * | | log the reason for publishing a new relay descriptor•••now we have a better chance of hunting down the root cause of bug 1810. Roger Dingledine2011-05-19
* | | | Merge branch 'maint-0.2.2'Roger Dingledine2011-05-17
|\| | |
| * | | refetch bridge descriptors in a timely fashion•••When we configure a new bridge via the controller, don't wait up to ten seconds before trying to fetch its descriptor. This wasn't so bad when you listed your bridges in torrc, but it's dreadful if you configure your bridges via vidalia. Roger Dingledine2011-05-17
* | | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/or/connection_edge.c Nick Mathewson2011-05-15
|\| | |
| * | | Don't clear out transient addressmap entries on HUP•••If you really want to purge the client DNS cache, the TrackHostExits mappings, and the virtual address mappings, you should be using NEWNYM instead. Fixes bug 1345; bugfix on Tor 0.1.0.1-rc. Note that this needs more work: now that we aren't nuking the transient addressmap entries on HUP, we need to make sure that configuration changes to VirtualAddressMap and TrackHostExits actually have a reasonable effect. Nick Mathewson2011-05-13
* | | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/or/config.c src/or/dirserv.c src/or/or.h Nick Mathewson2011-05-13
|\| | |
| * | | Write automatically-chosen control ports to a file.Nick Mathewson2011-05-13
* | | | Move dummy authority.z fetch out of update_router_descriptor_downloads•••To make sure that a server learns if its IP has changed, the server sometimes launches authority.z descriptor fetches from update_router_descriptor_downloads. That's nice, but we're moving towards a situation where update_router_descriptor_downloads doesn't always get called. So this patch breaks the authority.z check-and-fetch into a new function. This function also renames last_routerdesc_download to a more appropriate last_descriptor_download, and adds a new update_all_descriptor_downloads() function. (For now, this is unnecessary, since servers don't actually use microdescriptors. But that could change, or bridges could start using microdescriptors, and then we'll be glad this is refactored nicely.) Nick Mathewson2011-05-05
* | | | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-05-04
|\| | |
| * | | Fix compile warning on windowsSebastian Hahn2011-05-05
* | | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/or/main.c src/or/microdesc.c Nick Mathewson2011-05-03
|\| | |
| * | | Change who calls microdesc_cache_rebuild().•••Previously we ensured that it would get called periodically by doing it from inside the code that added microdescriptors. That won't work though: it would interfere with our code that tried to read microdescs from disk initially. Instead, we should consider rebuilding the cache periodically, and on startup. Nick Mathewson2011-05-03
| | |/ | |/|
* | | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-04-28
|\| |
| * | Ignore SIGNAL NEWNYM on relay-only Tor instancesRobert Ransom2011-04-28
* | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/or/rendcommon.h Nick Mathewson2011-04-28
|\| |
| * | Merge branch 'bug3k_021' into bug3k_022•••Conflicts: src/or/or.h src/or/rendclient.c Sebastian Hahn2011-04-28
| |\|
| | * Forget all rendezvous client state on SIGNAL NEWNYMRobert Ransom2011-04-28
* | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/or/main.h Nick Mathewson2011-04-26
|\| |
| * | Expose a new process_signal(uintptr_t), not signal_callback()•••This is a tweak to the bug2917 fix. Basically, if we want to simulate a signal arriving in the controller, we shouldn't have to pretend that we're Libevent, or depend on how Tor sets up its Libevent callbacks. Nick Mathewson2011-04-26
| * | Make SIGNAL DUMP work on FreeBSD•••While doing so, get rid of the now unnecessary function control_signal_act(). Fixes bug 2917, reported by Robert Ransom. Bugfix on commit 9b4aa8d2abbce71398e58188209a1b1d04885b96. This patch is loosely based on a patch by Robert (Changelog entry). Sebastian Hahn2011-04-15
* | | Merge remote-tracking branch 'asn/heartbeat'Nick Mathewson2011-04-19
|\ \ \
| * | | Reuse get_bytes_{read,written}() in status.cGeorge Kadianakis2011-04-16
* | | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/common/compat.h src/or/circuitlist.c src/or/circuituse.c src/or/or.h src/or/rephist.c Nick Mathewson2011-03-30
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Use timevals, not time_t, when expiring circuits.•••We've got millisecond timers now, we might as well use them. This change won't actually make circuits get expiered with microsecond precision, since we only call the expiry functions once per second. Still, it should avoid the situation where we have a circuit get expired too early because of rounding. A couple of the expiry functions now call tor_gettimeofday: this should be cheap since we're only doing it once per second. If it gets to be called more often, though, we should onsider having the current time be an argument again. Nick Mathewson2011-03-30
* | | Merge remote branch 'origin/maint-0.2.2'•••Fix trivial add/add conflict in main.c Conflicts: src/or/main.c Nick Mathewson2011-03-14
|\| |
| * | Tweak bug2716 patch a little•••Name the magic value "10" rather than re-deriving it. Comment more. Use the pattern that works for periodic timers, not the pattern that doesn't work. ;) Nick Mathewson2011-03-12
| * | improve accuracy for when a relay went unreachableRoger Dingledine2011-03-11
* | | Implement more heartbeat message stuff.•••(This squashes multiple commits: * Adds uptime monitoring support. * Adds circuit counting code. * Trivially tweaks the documentation. * Trivial run_scheduled_events() code tweaking. * Adds a status.h to export functions. * Added bandwidth monitoring code. * Added consensus presense detection code. * Restricts the precision of the bandwidth output. * Various fixes. * Fixed style and spacing problems. * Tidied up src/or/Makefile.am * Couple of minor fixes on status.c functions. * 'Implemented' client heartbeat support ) George Kadianakis2011-02-22
* | | Initial heartbeat subsystem commit.•••Sets: * Documentation * Logging domain * Configuration option * Scheduled event * Makefile It also creates status.c and the log_heartbeat() function. All code was written by Sebastian Hahn. Commit message was written by me (George Kadianakis). Sebastian Hahn2011-02-22
* | | change APIs slightly to make #1944 easierRoger Dingledine2011-02-07
* | | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2011-02-03
|\| |
| * | Enable ASLR and permanent DEP for Windows executables•••Fix for #2358 John Brooks2011-02-03
* | | GETINFO options for querying traffic usage•••This was originally a patch provided by pipe (http://www.mail-archive.com/or-talk@freehaven.net/msg13085.html) to provide a method for controllers to query the total amount of traffic tor has handled (this is a frequently requested piece of information by relay operators). Damian Johnson2011-01-07
* | | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2011-01-03
|\| |
| * | Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2•••Conflicts: src/common/test.h src/or/test.c Nick Mathewson2011-01-03
| |\|
| | * Bump copyright statements to 2011Nick Mathewson2011-01-03
* | | Merge remote branch 'origin/maint-0.2.2'Nick Mathewson2010-12-21
|\| |
| * | Better fix for 2190: defer libevent->controller messages instead of droppingNick Mathewson2010-11-19
* | | Call the new config option ConnDirectionStatistics.Karsten Loesing2010-12-03
* | | Add metric on uni/bidirectional connection usage.Karsten Loesing2010-12-03
* | | Add a SIGNAL event for control connections•••Implements ticket #1955 John Brooks2010-11-19
* | | Merge remote branch 'origin/maint-0.2.2'•••Conflicts: src/common/tortls.c Nick Mathewson2010-10-21
|\| |
| * | Rename get_client_identity_key to get_tlsclient_identity_keyNick Mathewson2010-10-21
| * | Maintain separate server and client identity keys when appropriate.•••Fixes a bug described in ticket #988. Robert Ransom2010-10-04
| * | Maintain separate server and client TLS contexts.•••Fixes bug #988. Robert Ransom2010-10-04
| * | Refactor tor_tls_context_new:•••* Make tor_tls_context_new internal to tortls.c, and return the new tor_tls_context_t from it. * Add a public tor_tls_context_init wrapper function to replace it. Robert Ransom2010-10-04
* | | Fix some XXXXs in connection_add_impl related to bufferevent error checking•••This might make bufferevents more asserty for a while, but they should make other bugs less likely to go unnoticed. Noted by Sebastian. Nick Mathewson2010-10-13
* | | Implement node_set_exit_policy_to_reject_all with a flag•••Also remove some debugging code. Nick Mathewson2010-10-13