mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
Simplify signaling by making Matching2 a layer over normal signaling. Implements UPNP port forwarding Implement sceNpMatching2AbortRequest Fix reported bw in sceNpUtil Hack for Fat Princess binding udp on 3658 Reenable CB for sceNpBasicAddPlayersHistoryAsync Misc fixes
19 lines
286 B
C++
19 lines
286 B
C++
#pragma once
|
|
|
|
#include "Utilities/Config.h"
|
|
|
|
struct cfg_upnp : cfg::node
|
|
{
|
|
cfg::string device_url{this, "DeviceUrl", ""};
|
|
|
|
void load();
|
|
void save() const;
|
|
|
|
std::string get_device_url() const;
|
|
|
|
void set_device_url(std::string_view url);
|
|
|
|
private:
|
|
static std::string get_path();
|
|
};
|