summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl/ssl_backend_openssl.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-07-18 05:57:39 +0200
committerGitHub <noreply@github.com>2023-07-18 05:57:39 +0200
commit3fded314f22554c867a283ca3b5c79069d96fe0d (patch)
tree633beb9295b25dfca6b7b53f07842eb366d32cb6 /src/core/hle/service/ssl/ssl_backend_openssl.cpp
parentMerge pull request #10934 from abouvier/cmake-vma (diff)
parentssl: Link with crypt32 for secure channel backend (diff)
downloadyuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar
yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.gz
yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.bz2
yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.lz
yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.xz
yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.tar.zst
yuzu-3fded314f22554c867a283ca3b5c79069d96fe0d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ssl/ssl_backend_openssl.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/hle/service/ssl/ssl_backend_openssl.cpp b/src/core/hle/service/ssl/ssl_backend_openssl.cpp
index f69674f77..6ca869dbf 100644
--- a/src/core/hle/service/ssl/ssl_backend_openssl.cpp
+++ b/src/core/hle/service/ssl/ssl_backend_openssl.cpp
@@ -1,14 +1,6 @@
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
-#include "core/hle/service/ssl/ssl_backend.h"
-#include "core/internal_network/network.h"
-#include "core/internal_network/sockets.h"
-
-#include "common/fs/file.h"
-#include "common/hex_util.h"
-#include "common/string_util.h"
-
#include <mutex>
#include <openssl/bio.h>
@@ -16,6 +8,14 @@
#include <openssl/ssl.h>
#include <openssl/x509.h>
+#include "common/fs/file.h"
+#include "common/hex_util.h"
+#include "common/string_util.h"
+
+#include "core/hle/service/ssl/ssl_backend.h"
+#include "core/internal_network/network.h"
+#include "core/internal_network/sockets.h"
+
using namespace Common::FS;
namespace Service::SSL {