[Bug 53180] aria2 needs QueryContextAttributes(SECPKG_ATTR_CIPHER_INFO) to return a valid version

WineHQ Bugzilla wine-bugs at winehq.org
Sun Jun 19 04:18:05 CDT 2022


https://bugs.winehq.org/show_bug.cgi?id=53180

--- Comment #2 from Feng Yu <abcfy2 at 163.com> ---
Yeah. The error code line is:
https://github.com/aria2/aria2/blob/release-1.36.0/src/WinTLSSession.cc#L798

    A2_LOG_INFO(
        fmt("WinTLS: connected with: %s", getCipherSuite(&handle_).c_str()));
    switch (getProtocolVersion(&handle_)) {
    case 0x302:
      version = TLS_PROTO_TLS11;
      break;
    case 0x303:
      version = TLS_PROTO_TLS12;
      break;
    default:
      assert(0);
      abort();
    }

Seems getCipherSuite(&handle_).c_str()) returns unknown in Wine.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list