gpt4 book ai didi

c++ - 构建 libcurl 时如何启用摘要

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:49:09 26 4
gpt4 key购买 nike

我构建了 libcurl 并运行它,但是当服务器需要摘要身份验证时它不起作用。

我检查了 C 代码,发现以下部分(在 output_auth_headers 函数中的 http.c 中)未构建:

#ifndef CURL_DISABLE_CRYPTO_AUTH
if(authstatus->picked == CURLAUTH_DIGEST) {
auth="Digest";
result = Curl_output_digest(conn,
proxy,
(const unsigned char *)request,
(const unsigned char *)path);
if(result)
return result;
}
else
#endif

我应该怎么做才能使这部分代码构建然后使摘要运行?

最佳答案

配置时,确保选择--enable-crypto-auth

像这样:

./buildconf && ./configure --enable-crypto-auth

关于c++ - 构建 libcurl 时如何启用摘要,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33629306/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com