diff options
author | Werner Koch <[email protected]> | 2011-04-12 14:30:08 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-04-12 14:30:08 +0000 |
commit | f1e9f510ec70f2bb64f1b61b2b040d8d3103af32 (patch) | |
tree | 308c29c8de56f5bac9e711466ba1ce9a89fc1439 /dirmngr/ks-action.c | |
parent | Detect premature EOF while parsing corrupted key packets. (diff) | |
download | gnupg-f1e9f510ec70f2bb64f1b61b2b040d8d3103af32.tar.gz gnupg-f1e9f510ec70f2bb64f1b61b2b040d8d3103af32.zip |
Add code for explicit selection of pooled A records.
To better cope with round robin pooled A records like keys.gnupg.net
we need to keep some information on unresponsive hosts etc. What we
do now is to resolve the hostnames, remember them and select a random
one. If a host is dead it will be marked and a different one
selected. This is intended to solve the problem of long timeouts due
to unresponsive hosts.
The code is not yet finished but selection works.
Diffstat (limited to 'dirmngr/ks-action.c')
-rw-r--r-- | dirmngr/ks-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/ks-action.c b/dirmngr/ks-action.c index 1f876d07b..14de4d6c0 100644 --- a/dirmngr/ks-action.c +++ b/dirmngr/ks-action.c @@ -76,7 +76,7 @@ ks_action_help (ctrl_t ctrl, const char *url) return err; } - /* Call all engines to geive them a chance to print a help sting. */ + /* Call all engines to give them a chance to print a help sting. */ err = ks_hkp_help (ctrl, parsed_uri); if (!err) err = ks_http_help (ctrl, parsed_uri); |