mirror of
https://github.com/Lime3DS/Lime3DS
synced 2025-01-07 12:43:15 +00:00
24 lines
445 B
C++
24 lines
445 B
C++
// 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 Core::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 Core::RPC
|