aboutsummaryrefslogtreecommitdiff
path: root/src/or/control.c
AgeCommit message (Collapse)Author
2009-02-16and list the new event here tooRoger Dingledine
svn:r18557
2009-02-16new controller event NEWCONSENSUS that lists the networkstatusRoger Dingledine
lines for every recommended relay. still needs docdoc and changelog entry. svn:r18556
2009-01-28clean up r18287Roger Dingledine
svn:r18288
2009-01-28patch from matt to implement 'getinfo status/clients-seen'Roger Dingledine
svn:r18287
2009-01-27gah. yet another place that needs to be edited when we addRoger Dingledine
a new event. what a mess. svn:r18277
2009-01-21Let controllers actually ask for the "clients_seen" event. BugfixRoger Dingledine
on 0.2.1.10-alpha; reported by Matt Edman. svn:r18201
2009-01-13Fix up (I hope) most ot the things that coverity suddenly claimed were ↵Nick Mathewson
REVERSE_INULL. This is what we get for bragging about being down to 0 issues. svn:r18096
2009-01-04Remove svn $Id$s from our source, and remove tor --version --version.Nick Mathewson
The subversion $Id$ fields made every commit force a rebuild of whatever file got committed. They were not actually useful for telling the version of Tor files in the wild. svn:r17867
2008-12-29While I'm at it, refactor control.c a little so that the dead code no longer ↵Nick Mathewson
exists. svn:r17810
2008-12-27New controller event "clients_seen" to report a geoip-based summaryRoger Dingledine
of which countries we've seen clients from recently. Now controllers like Vidalia can show bridge operators that they're actually making a difference. svn:r17796
2008-12-27Remove a deprecated controller alias; make another one generate a warning.Nick Mathewson
svn:r17793
2008-12-25some fixes i found in my sandboxRoger Dingledine
svn:r17771
2008-12-23Document most undocumented variables.Nick Mathewson
svn:r17754
2008-12-22Add DOCDOC entries for undocumented static and global variables.Nick Mathewson
svn:r17739
2008-12-22Make doxygen not complain about the way we spell CRLFNUL in control.cNick Mathewson
svn:r17735
2008-12-22Fix most DOCDOCs remaining and/or added by redox.Nick Mathewson
svn:r17734
2008-12-22Add DOCDOC comments for all undocumented functions. Add missing *s to other ↵Nick Mathewson
comments so that they will get recognized as doxygen. svn:r17729
2008-12-22Fix all of the doxygen warnings not pertaining to missing documentation.Nick Mathewson
svn:r17727
2008-12-18Massage a little code to hopfully please coverity.Nick Mathewson
svn:r17669
2008-12-17Move edge-only flags from connection_t to edge_connection_t.Nick Mathewson
svn:r17643
2008-12-11Note that a couple of line in control.c are supposed to be dead-code.Nick Mathewson
I'm hoping not to have to litter the rest of our codebase with Coverity ignores, but I think these are the only one we need right now. svn:r17602
2008-12-10note a potential bug in status events. need to look at spec toRoger Dingledine
see if it's really a bug. svn:r17548
2008-12-10Resume using the correct "REASON=" stream when telling theRoger Dingledine
controller why we closed a stream. Bugfix in 0.2.1.1-alpha. svn:r17547
2008-12-09remove a bogus comment. Now that there is no undocumented synonym for ↵Nick Mathewson
EXTENDED_EVENTS, we do not need to point out that EXTENDED_EVENTS is documented svn:r17542
2008-12-09Finally remove deprecated-since-0.1.2.4-alpha EXTENDED_FORMAT synonym for ↵Nick Mathewson
EXTENDED_EVENTS svn:r17538
2008-11-11Add PURPOSE= field to getinfo circuit-status. With luck, controllers are ↵Nick Mathewson
ignoring extra fields (like they are supposed to) and this will not break any controllers. svn:r17245
2008-10-13Minor fix in the warning messages when you're having problems Roger Dingledine
bootstrapping; also, be more forgiving of bootstrap problems when we're still making incremental progress on a given bootstrap phase. svn:r17066
2008-09-29Include circuit purposes in circuit events. Now all circuit events are ↵Nick Mathewson
extended; this makes the code simpler. svn:r17007
2008-09-26Proposal 152 implementation from Josh Albrecht, with tweaks.Nick Mathewson
svn:r16983
2008-09-14Serve the latest v3 networkstatus consensus via the controlRoger Dingledine
port. Use "getinfo dir/status-vote/current/consensus" to fetch it. svn:r16907
2008-09-05Refactor some code and add some asserts based on scanner results.Nick Mathewson
svn:r16783
2008-08-15Switch global_identifier on connections to a 64-bit field and move it to ↵Nick Mathewson
connection_t. When procession onionskins, look up the connection by this field rather than by addr:port. This will keep us from dropping onionskins. How many dropped circuits are dropped because of this bug? svn:r16558
2008-08-04don't log-warn on a bootstrapping status event if the recommendationRoger Dingledine
is to ignore. svn:r16405
2008-07-24 r17346@aud-055: nickm | 2008-07-24 15:37:19 +0200Nick Mathewson
Make generic address manipulation functions work better. Switch address policy code to use tor_addr_t, so it can handle IPv6. That is a good place to start. svn:r16178
2008-06-24Send a bootstrap problem "warn" event on the first problem if theRoger Dingledine
reason is NO_ROUTE (that is, our network is down). svn:r15443
2008-06-20If you're using bridges, generate "bootstrap problem" warningsRoger Dingledine
as soon as you run out of working bridges, rather than waiting for ten failures -- which will never happen if you have less than ten bridges. svn:r15368
2008-06-19start sending "COUNT=%d RECOMMENDATION=%s" key/values on bootstrapRoger Dingledine
problem status events, so the controller can hear about problems even before tor decides they're worth reporting for sure. svn:r15357
2008-06-18I was on the second paragraph of my or-dev mail explaining why I chose toRoger Dingledine
set starting=1 to avoid potential bugs with having it conflict with 0, which I used to mean uninitialized, when I realized I would be writing many more lame-sounding paragraphs in the future. Just start it at 0 and handle the bugs. svn:r15346
2008-06-17add a getinfo so vidalia can query our current bootstrap state, in caseRoger Dingledine
it attaches partway through and wants to catch up. matt, is this a good format for you, or is there an even better format? svn:r15325
2008-06-13steal some of the bootstrap phase strings from vidaliaRoger Dingledine
svn:r15193
2008-06-11consolidate all our edge/circ/orconn reason-to-foo-or-back functionsRoger Dingledine
svn:r15115
2008-06-10some cleanups in preparation for moving stuff aroundRoger Dingledine
svn:r15112
2008-06-09make the 'bootstrap problem' stuff quieter while i'm messing with itRoger Dingledine
svn:r15094
2008-06-09Start noticing and reporting bootstrapping failures too. It looks likeRoger Dingledine
we never bothered learning why OR conns fail, so next step is to add some infrastructure for that. svn:r15091
2008-06-09fix a bug where we were never reporting theRoger Dingledine
"Finishing handshake with entry guard" bootstrap phase svn:r15087
2008-06-08include tags in the bootstrap status events. also document theRoger Dingledine
bootstrapping process and how the phases break down. svn:r15020
2008-06-07actually start sending the bootstrap status event, so mattRoger Dingledine
can start playing with it on his side. svn:r15009
2008-06-07infrastructure for the 'bootstrap status event' feature, so we canRoger Dingledine
tell the controller how we're doing at bootstrapping, and it can tell the user. svn:r15008
2008-05-27Fix the first part of bug 681, as suggested by Robert Hogan on or-talk.Nick Mathewson
svn:r14754
2008-03-17 r18861@catbus: nickm | 2008-03-16 23:22:56 -0400Nick Mathewson
Fix a couple of bugs in setting control log callback severity. svn:r14065