summaryrefslogtreecommitdiffstats
path: root/include/sysutils/SocketClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sysutils/SocketClient.h')
-rw-r--r--include/sysutils/SocketClient.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/sysutils/SocketClient.h b/include/sysutils/SocketClient.h
index a298f25e4..4d7c4fa70 100644
--- a/include/sysutils/SocketClient.h
+++ b/include/sysutils/SocketClient.h
@@ -45,14 +45,12 @@ public:
int sendMsg(int code, const char *msg, bool addErrno);
int sendMsg(int code, const char *msg, bool addErrno, bool useCmdNum);
- // Provides a mechanism to send a response code to the client. The message uses
- // the same format as in sendMsg method above.
- // Sends the code, a space, and a null character.
+ // Provides a mechanism to send a response code to the client.
+ // Sends the code and a null character.
int sendCode(int code);
- // Provides a mechanism to send binary data to client. The message uses the
- // same format as in sendMsg method above.
- // Sends the code, a space, and a null character, followed by 4 bytes of
+ // Provides a mechanism to send binary data to client.
+ // Sends the code and a null character, followed by 4 bytes of
// big-endian length, and the data.
int sendBinaryMsg(int code, const void *data, int len);