mpd/src/lib/curl/Setup.cxx
2023-03-06 14:59:48 +01:00

24 lines
494 B
C++

// SPDX-License-Identifier: BSD-2-Clause
// author: Max Kellermann <max.kellermann@gmail.com>
#include "Setup.hxx"
#include "Easy.hxx"
#include "Version.h"
namespace Curl {
void
Setup(CurlEasy &easy)
{
easy.SetUserAgent("Music Player Daemon " VERSION);
#if !defined(ANDROID) && !defined(_WIN32)
easy.SetOption(CURLOPT_NETRC, 1L);
#endif
easy.SetNoProgress();
easy.SetNoSignal();
easy.SetConnectTimeout(10);
easy.SetOption(CURLOPT_HTTPAUTH, (long) CURLAUTH_ANY);
}
} // namespace Curl