network: Add initial files and enet dependency
This commit is contained in:
parent
1bcde9dd98
commit
dcfe0a5feb
15 changed files with 2898 additions and 0 deletions
18
src/network/verify_user.cpp
Normal file
18
src/network/verify_user.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Copyright 2018 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "network/verify_user.h"
|
||||
|
||||
namespace Network::VerifyUser {
|
||||
|
||||
Backend::~Backend() = default;
|
||||
|
||||
NullBackend::~NullBackend() = default;
|
||||
|
||||
UserData NullBackend::LoadUserData([[maybe_unused]] const std::string& verify_UID,
|
||||
[[maybe_unused]] const std::string& token) {
|
||||
return {};
|
||||
}
|
||||
|
||||
} // namespace Network::VerifyUser
|
Loading…
Add table
Add a link
Reference in a new issue