mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 02:09:49 +00:00
20 lines
337 B
C
20 lines
337 B
C
|
//
|
||
|
// Created by loki on 6/3/19.
|
||
|
//
|
||
|
|
||
|
#ifndef SUNSHINE_NVHTTP_H
|
||
|
#define SUNSHINE_NVHTTP_H
|
||
|
|
||
|
#include <functional>
|
||
|
#include <string>
|
||
|
|
||
|
#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();
|
||
|
}
|
||
|
|
||
|
#endif //SUNSHINE_NVHTTP_H
|