aboutsummaryrefslogtreecommitdiff
path: root/src/or/entrynodes.h
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'public/bug5018'Nick Mathewson2013-10-29
|\ | | | | | | | | Conflicts: src/or/entrynodes.c
| * Only launch transport proxies that provide useful transports.George Kadianakis2013-10-29
| |
* | DROPGUARDS controller commandNick Mathewson2013-10-21
| | | | | | | | Implements ticket 9934; patch from "ra"
* | Merge remote-tracking branch 'asn/bug3594_rebased_and_fixed'Nick Mathewson2013-03-19
|\ \ | |/ |/| | | | | | | Conflicts: src/common/util.c src/or/entrynodes.h
| * Refactoring to make parse_bridge_line() unittestable.George Kadianakis2013-02-11
| | | | | | | | | | | | - Make parse_bridge_line() return a struct. - Make bridge_add_from_config() accept a struct. - Make string_is_key_value() less hysterical.
| * Send SOCKS arguments when doing SOCKS5.George Kadianakis2013-02-09
| |
| * Send SOCKS arguments when doing SOCKS4.George Kadianakis2013-02-09
| |
| * Add support for parsing SOCKS arguments.George Kadianakis2013-02-09
| |
* | Merge remote-tracking branch 'public/feature4994-rebased'Nick Mathewson2013-02-15
|\ \ | |/ |/|
| * Restore the entry/dirguard distinction.Nick Mathewson2013-02-12
| | | | | | | | | | We shouldn't be calling choose_random_entry() for directory conncetions; that's what choose_random_dirguard() is for.
| * generalize choose_random_entry()'s dirinfo parameterRoger Dingledine2013-02-02
| | | | | | | | | | | | | | | | Now we can specify to skip bridges that wouldn't be able to answer the type of dir fetch we're launching. It's still the responsibility of the rest of the code to prevent us from launching a given dir fetch if we have no bridges that could handle it.
| * use microdescriptors if *any* of our bridges can handle themRoger Dingledine2013-02-02
| | | | | | | | | | | | Now as we move into a future where most bridges can handle microdescs we will generally find ourselves using them, rather than holding back just because one of our bridges doesn't use them.
* | Separate the flags for logging use bias.Mike Perry2013-02-07
|/ | | | | I think we want both sets of messages to appear independently to help us know what needs tuning.
* Implement Path use bias accounting.Mike Perry2013-01-18
| | | | | | | Path use bias measures how often we can actually succeed using the circuits we actually try to use. It is a subset of path bias accounting, but it is computed as a separate statistic because the rate of client circuit use may vary depending on use case.
* Update the copyright date to 201.Nick Mathewson2013-01-16
|
* Merge remote-tracking branch 'mikeperry/209-path-bias-changes'Nick Mathewson2012-12-25
|\
| * Space fixes.Mike Perry2012-12-09
| |
| * Fix a rather serious use-count state bug.Mike Perry2012-12-09
| | | | | | | | | | We need to use the success count or the use count depending on the consensus parameter.
| * Convert to doubles for all pathbias state.Mike Perry2012-12-09
| | | | | | | | Let's hope this solves the rounding error issue..
| * Also shorten circuit_successes to circ_successes.Mike Perry2012-12-09
| | | | | | | | | | | | For consistency and great justice. Ok, mostly consistency.
| * Rename first_hop to circ_attempt.Mike Perry2012-12-09
| | | | | | | | | | Since we've generalized what we can count from (first or second hop), we should generalize the variable and constant naming too.
| * Move a pathbias function that depends on entryguard_t.Mike Perry2012-12-07
| |
| * Prop 209: Add path bias counts for timeouts and other mechanisms.Mike Perry2012-12-07
| | | | | | | | | | | | | | Turns out there's more than one way to block a tagged circuit. This seems to successfully handle all of the normal exit circuits. Hidden services need additional tweaks, still.
| * Update with code review changes from Nick.Mike Perry2012-12-07
| |
| * Fix spaces.Mike Perry2012-12-07
| |
| * Add log message checks for different rates.Mike Perry2012-12-07
| | | | | | | | May want to squash this forward or back..
| * Add the ability to count circuit timeouts for guards.Mike Perry2012-12-07
| | | | | | | | This is purely for informational reasons for debugging.
* | Directory guard implementation.Nick Mathewson2012-12-25
| | | | | | | | Implements proposal 207; ticket 6526.
* | Remember which of our guards are directory cachesNick Mathewson2012-12-25
|/
* Bug 3443: Don't count ORconn setup in circuit build time.Mike Perry2012-12-07
| | | | | Also, add a hack Roger suggested where we're more patient if no circuits are opened yet.
* Split code for entry guards and bridges into a new module.Nick Mathewson2012-10-15