mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 02:09:49 +00:00
18 lines
470 B
C++
18 lines
470 B
C++
#include "network.h"
|
|
#include "thread_safe.h"
|
|
|
|
namespace http {
|
|
|
|
void init(std::shared_ptr<safe::signal_t> shutdown_event);
|
|
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);
|
|
extern std::string unique_id;
|
|
extern net::net_e origin_pin_allowed;
|
|
|
|
} // namespace http
|