Scripting: reimplement protocol over plan UDP using boost::asio
This commit is contained in:
24
src/core/rpc/udp_server.h
Normal file
24
src/core/rpc/udp_server.h
Normal file
@@ -0,0 +1,24 @@
|
||||
// Copyright 2019 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
|
||||
namespace RPC {
|
||||
|
||||
class Packet;
|
||||
|
||||
class UDPServer {
|
||||
public:
|
||||
explicit UDPServer(std::function<void(std::unique_ptr<Packet>)> new_request_callback);
|
||||
~UDPServer();
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> impl;
|
||||
};
|
||||
|
||||
} // namespace RPC
|
||||
Reference in New Issue
Block a user