mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2025-12-26 22:48:09 +00:00
34 lines
815 B
C++
34 lines
815 B
C++
/**
|
|
* @file src/httpcommon.h
|
|
* @brief Declarations for common HTTP.
|
|
*/
|
|
#pragma once
|
|
|
|
// lib includes
|
|
#include <curl/curl.h>
|
|
|
|
// local includes
|
|
#include "network.h"
|
|
#include "thread_safe.h"
|
|
|
|
namespace http {
|
|
|
|
int init();
|
|
int create_creds(const std::string &pkey, const std::string &cert);
|
|
int save_user_creds(
|
|
const std::string &file,
|
|
const std::string &username,
|
|
const std::string &password,
|
|
bool run_our_mouth = false
|
|
);
|
|
|
|
int reload_user_creds(const std::string &file);
|
|
bool download_file(const std::string &url, const std::string &file, long ssl_version = CURL_SSLVERSION_TLSv1_2);
|
|
std::string url_escape(const std::string &url);
|
|
std::string url_get_host(const std::string &url);
|
|
|
|
extern std::string unique_id;
|
|
extern net::net_e origin_web_ui_allowed;
|
|
|
|
} // namespace http
|