mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-16 23:10:13 +00:00
22 lines
409 B
C++
22 lines
409 B
C++
//
|
|
// Created by loki on 6/3/19.
|
|
//
|
|
|
|
#ifndef SUNSHINE_NVHTTP_H
|
|
#define SUNSHINE_NVHTTP_H
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#include "thread_safe.h"
|
|
|
|
#define CA_DIR SUNSHINE_ASSETS_DIR "/demoCA"
|
|
#define PRIVATE_KEY_FILE CA_DIR "/cakey.pem"
|
|
#define CERTIFICATE_FILE CA_DIR "/cacert.pem"
|
|
|
|
namespace nvhttp {
|
|
void start(std::shared_ptr<safe::signal_t> shutdown_event);
|
|
}
|
|
|
|
#endif //SUNSHINE_NVHTTP_H
|