diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socket.h b/include/socket.h index ce0ae7d55..3a5036706 100644 --- a/include/socket.h +++ b/include/socket.h @@ -62,7 +62,7 @@ private: /** * The hostname connected to */ - std::string host; + char host[MAXBUF]; /** * The port connected to, or the port @@ -116,7 +116,7 @@ private: * to stored in string form for * easy retrieval by accessors. */ - std::string IP; + char IP[MAXBUF]; /** * Client sockaddr structure used |