diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-11 20:38:15 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-11 20:38:15 +0000 |
commit | 5fa0e83de43112c1a7729765f0478042c748c425 (patch) | |
tree | ef0d39d87b2a63d5fee403a6dcfc7f93f7eeb530 /include/socket.h | |
parent | 43b4a302d4d4210eea93e10cce2fabdd27c04e58 (diff) |
Complete removal of all stl stuff here
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3686 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/socket.h')
-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 |