summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-02-02 15:43:42 +0100
committerCarl Hetherington <cth@carlh.net>2025-02-02 21:20:27 +0100
commitcf0e319d143ed2142dbdb54be7f9700fb3486c02 (patch)
tree3fb299402501a219190188cf0a2025752249a137
parent988f2ace4aa0a5afdb5cf3933a145896de969d0c (diff)
Missing parameter name.
-rw-r--r--src/lib/server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/server.h b/src/lib/server.h
index 7e42f6cbd..74727da34 100644
--- a/src/lib/server.h
+++ b/src/lib/server.h
@@ -52,7 +52,7 @@ private:
virtual void handle (std::shared_ptr<Socket> socket) = 0;
void start_accept ();
- void handle_accept (std::shared_ptr<Socket>, boost::system::error_code const &);
+ void handle_accept(std::shared_ptr<Socket> socket, boost::system::error_code const &);
boost::asio::io_service _io_service;
boost::asio::ip::tcp::acceptor _acceptor;