summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/ssl/ssl_backend_none.cpp
blob: a7fafd0a30201fc308250d2ba097de98c0e107c9 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                               

                               

                                             

                        
                                                                                       

                                                                                                  



                               
// 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 {

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

} // namespace Service::SSL