summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-03-14 04:21:01 +0100
committerSubv <subv2112@gmail.com>2017-03-26 15:17:52 +0200
commit4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd (patch)
tree83be4863a987dc2a92f3c1da995366fc9675c7d9 /src/core
parentServices/UDS: Initial support for hosting local-wlan networks. (diff)
downloadyuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.tar
yuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.tar.gz
yuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.tar.bz2
yuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.tar.lz
yuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.tar.xz
yuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.tar.zst
yuzu-4243c1198ff960bcf5cfaaf38cc5cc1689a2bafd.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/nwm/nwm_uds.cpp18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp
index 789476418..b69c90ef1 100644
--- a/src/core/hle/service/nwm/nwm_uds.cpp
+++ b/src/core/hle/service/nwm/nwm_uds.cpp
@@ -38,11 +38,8 @@ static std::unordered_map<u32, Kernel::SharedPtr<Kernel::Event>> bind_node_event
// Since we're not actually interacting with physical radio waves, this is just a dummy value.
static u8 network_channel = DefaultNetworkChannel;
-// The identifier of the network kind, this is used to filter away networks that we're not interested in.
-static u32 wlan_comm_id = 0;
-
-// Application data that is sent when broadcasting the beacon frames.
-static std::vector<u8> application_data;
+// Information about the network that we're currently connected to.
+static NetworkInfo network_info;
/**
* NWM_UDS::Shutdown service function
@@ -244,12 +241,10 @@ static void BeginHostingNetwork(Interface* self) {
LOG_DEBUG(Service_NWM, "called");
- NetworkInfo network_info;
Memory::ReadBlock(network_info_address, &network_info, sizeof(NetworkInfo));
connection_status.status = static_cast<u32>(NetworkStatus::ConnectedAsHost);
connection_status.max_nodes = network_info.max_nodes;
- wlan_comm_id = network_info.wlan_comm_id;
// There's currently only one node in the network (the host).
connection_status.total_nodes = 1;
@@ -263,9 +258,6 @@ static void BeginHostingNetwork(Interface* self) {
if (network_info.channel != 0)
network_channel = network_info.channel;
- // Clear the pre-existing application data.
- application_data.clear();
-
connection_status_event->Signal();
// TODO(Subv): Start broadcasting the network, send a beacon frame every 102.4ms.
@@ -333,8 +325,8 @@ static void SetApplicationData(Interface* self) {
return;
}
- application_data.resize(size);
- Memory::ReadBlock(address, application_data.data(), size);
+ network_info.application_data_size = size;
+ Memory::ReadBlock(address, network_info.application_data.data(), size);
rb.Push(RESULT_SUCCESS);
}
@@ -379,7 +371,7 @@ NWM_UDS::NWM_UDS() {
}
NWM_UDS::~NWM_UDS() {
- application_data.clear();
+ network_info = {};
bind_node_events.clear();
connection_status_event = nullptr;
recv_buffer_memory = nullptr;