Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Networking/NetworkResponder.h')
-rw-r--r--src/Networking/NetworkResponder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Networking/NetworkResponder.h b/src/Networking/NetworkResponder.h
index 2bf3976d..2cfb3c97 100644
--- a/src/Networking/NetworkResponder.h
+++ b/src/Networking/NetworkResponder.h
@@ -27,8 +27,8 @@ public:
NetworkResponder(const NetworkResponder&) = delete;
NetworkResponder *GetNext() const noexcept { return next; }
- virtual bool Spin() noexcept = 0; // do some work, returning true if we did anything significant
- virtual bool Accept(Socket *s, NetworkProtocol protocol) noexcept = 0; // ask the responder to accept this connection, returns true if it did
+ virtual bool Spin() noexcept = 0; // do some work, returning true if we did anything significant
+ virtual bool Accept(Socket *s, NetworkProtocol protocol) noexcept = 0; // ask the responder to accept this connection, returns true if it did
virtual void Terminate(NetworkProtocol protocol, NetworkInterface *interface) noexcept = 0; // terminate the responder if it is serving the specified protocol on the specified interface
virtual void Diagnostics(MessageType mtype) const noexcept = 0;