2019-12-03 20:23:33 +01:00
|
|
|
//
|
|
|
|
// Created by loki on 6/3/19.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SUNSHINE_NVHTTP_H
|
|
|
|
#define SUNSHINE_NVHTTP_H
|
|
|
|
|
2021-06-09 19:12:00 +02:00
|
|
|
#include "thread_safe.h"
|
2021-05-29 23:05:37 +02:00
|
|
|
#include <Simple-Web-Server/server_http.hpp>
|
|
|
|
#include <Simple-Web-Server/server_https.hpp>
|
2021-06-09 19:12:00 +02:00
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
2019-12-03 20:23:33 +01:00
|
|
|
|
|
|
|
namespace nvhttp {
|
2021-06-21 21:21:52 +02:00
|
|
|
void start();
|
2021-05-30 16:42:40 +02:00
|
|
|
bool pin(std::string pin);
|
2021-05-29 22:29:10 +02:00
|
|
|
} // namespace nvhttp
|
2019-12-03 20:23:33 +01:00
|
|
|
|
|
|
|
#endif //SUNSHINE_NVHTTP_H
|