mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-02-06 09:39:50 +00:00
Fix Incldue Order
This commit is contained in:
parent
ffb80c5fc3
commit
8961b0462e
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
|
|
||||||
#include <boost/property_tree/json_parser.hpp>
|
|
||||||
#include <boost/property_tree/ptree.hpp>
|
#include <boost/property_tree/ptree.hpp>
|
||||||
#include <boost/property_tree/xml_parser.hpp>
|
#include <boost/property_tree/xml_parser.hpp>
|
||||||
|
#include <boost/property_tree/json_parser.hpp>
|
||||||
|
|
||||||
#include <boost/asio/ssl/context.hpp>
|
#include <boost/asio/ssl/context.hpp>
|
||||||
|
|
||||||
@ -13,15 +13,15 @@
|
|||||||
#include <boost/asio/ssl/context_base.hpp>
|
#include <boost/asio/ssl/context_base.hpp>
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "utility.h"
|
||||||
|
#include "rtsp.h"
|
||||||
#include "crypto.h"
|
#include "crypto.h"
|
||||||
#include "httpcommon.h"
|
|
||||||
#include "main.h"
|
|
||||||
#include "network.h"
|
|
||||||
#include "nvhttp.h"
|
#include "nvhttp.h"
|
||||||
#include "platform/common.h"
|
#include "platform/common.h"
|
||||||
#include "rtsp.h"
|
#include "network.h"
|
||||||
#include "utility.h"
|
|
||||||
#include "uuid.h"
|
#include "uuid.h"
|
||||||
|
#include "main.h"
|
||||||
|
#include "httpcommon.h"
|
||||||
|
|
||||||
namespace http {
|
namespace http {
|
||||||
using namespace std::literals;
|
using namespace std::literals;
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
#include <boost/log/sources/severity_logger.hpp>
|
#include <boost/log/sources/severity_logger.hpp>
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "confighttp.h"
|
|
||||||
#include "httpcommon.h"
|
|
||||||
#include "nvhttp.h"
|
#include "nvhttp.h"
|
||||||
|
#include "httpcommon.h"
|
||||||
|
#include "confighttp.h"
|
||||||
#include "rtsp.h"
|
#include "rtsp.h"
|
||||||
#include "thread_pool.h"
|
#include "thread_pool.h"
|
||||||
#include "video.h"
|
#include "video.h"
|
||||||
|
@ -18,9 +18,9 @@
|
|||||||
#include <Simple-Web-Server/server_https.hpp>
|
#include <Simple-Web-Server/server_https.hpp>
|
||||||
#include <boost/asio/ssl/context_base.hpp>
|
#include <boost/asio/ssl/context_base.hpp>
|
||||||
|
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "crypto.h"
|
#include "crypto.h"
|
||||||
#include "httpcommon.h"
|
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "network.h"
|
#include "network.h"
|
||||||
#include "nvhttp.h"
|
#include "nvhttp.h"
|
||||||
@ -28,7 +28,8 @@
|
|||||||
#include "rtsp.h"
|
#include "rtsp.h"
|
||||||
#include "utility.h"
|
#include "utility.h"
|
||||||
#include "uuid.h"
|
#include "uuid.h"
|
||||||
|
#include "main.h"
|
||||||
|
#include "httpcommon.h"
|
||||||
|
|
||||||
namespace nvhttp {
|
namespace nvhttp {
|
||||||
using namespace std::literals;
|
using namespace std::literals;
|
||||||
|
@ -5,11 +5,11 @@
|
|||||||
#ifndef SUNSHINE_NVHTTP_H
|
#ifndef SUNSHINE_NVHTTP_H
|
||||||
#define SUNSHINE_NVHTTP_H
|
#define SUNSHINE_NVHTTP_H
|
||||||
|
|
||||||
#include "thread_safe.h"
|
|
||||||
#include <Simple-Web-Server/server_http.hpp>
|
|
||||||
#include <Simple-Web-Server/server_https.hpp>
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <Simple-Web-Server/server_http.hpp>
|
||||||
|
#include <Simple-Web-Server/server_https.hpp>
|
||||||
|
#include "thread_safe.h"
|
||||||
|
|
||||||
#define CA_DIR SUNSHINE_ASSETS_DIR "/demoCA"
|
#define CA_DIR SUNSHINE_ASSETS_DIR "/demoCA"
|
||||||
#define PRIVATE_KEY_FILE CA_DIR "/cakey.pem"
|
#define PRIVATE_KEY_FILE CA_DIR "/cakey.pem"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user