summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl/ssl_backend_none.cpp
blob: 2f4f23c42dd3911081399c13dd69fd2f1d6c4b7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/logging/log.h"

#include "core/hle/service/ssl/ssl_backend.h"

namespace Service::SSL {

ResultVal<std::unique_ptr<SSLConnectionBackend>> CreateSSLConnectionBackend() {
    LOG_ERROR(Service_SSL,
              "Can't create SSL connection because no SSL backend is available on this platform");
    return ResultInternalError;
}

} // namespace Service::SSL