summaryrefslogtreecommitdiff
path: root/src/input_common/udp/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input_common/udp/client.cpp')
-rw-r--r--src/input_common/udp/client.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/input_common/udp/client.cpp b/src/input_common/udp/client.cpp
index 5f5a9989c..7d6b0478e 100644
--- a/src/input_common/udp/client.cpp
+++ b/src/input_common/udp/client.cpp
@@ -31,10 +31,9 @@ public:
31 31
32 explicit Socket(const std::string& host, u16 port, u8 pad_index, u32 client_id, 32 explicit Socket(const std::string& host, u16 port, u8 pad_index, u32 client_id,
33 SocketCallback callback) 33 SocketCallback callback)
34 : client_id(client_id), timer(io_service), 34 : callback(std::move(callback)), timer(io_service),
35 send_endpoint(udp::endpoint(address_v4::from_string(host), port)), 35 socket(io_service, udp::endpoint(udp::v4(), 0)), client_id(client_id),
36 socket(io_service, udp::endpoint(udp::v4(), 0)), pad_index(pad_index), 36 pad_index(pad_index), send_endpoint(udp::endpoint(address_v4::from_string(host), port)) {}
37 callback(std::move(callback)) {}
38 37
39 void Stop() { 38 void Stop() {
40 io_service.stop(); 39 io_service.stop();