Cameron Sours wrote on Wed, Jan 27, 2016 at 20:32:45 +0000:
> The windows Crypto API was attempting to connect to Windows Update to
> retrieve Certificate revocation information (CRL - certificate
> revocation list). The default timeout for CRL retrieval is 15 seconds.
> The timeout for authentication on the server is 10 seconds; as 15 is
> greater than 10, this fails.

Thanks for sharing the problem and solution.

> **Suggested SVN Changes:**
> 
> 1.            Enable Verbosity option on the command line for all operations

The config flag from (3), once added, will be settable from the
command-line through the --config-option flag.  Is that what you mean?

> 2.            Add error ENUM name to stderr

This is already done in debug builds (windows) and maintainer builds
(unix).  When dealing with release builds, you can convert E170013 codes
to symbolic names with tools/dev/which_error.py.

The E730054 code you saw is the sum of
        SOCECONNRESET = 10054
        APR_OS_START_SYSERR = 720000
(from tools/dev/aprerr.txt), which that script doesn't yet handle.

> 3.            Add config flag for Serf Library debug logging.
> 

Cheers,

Daniel

Reply via email to