summaryrefslogtreecommitdiff
path: root/include/connection.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-12 20:30:45 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-12 20:30:45 +0000
commit9c70fbb7c7c532baf0e02e144e93d259b13913dd (patch)
treeaec584affd5103b0ec6cfda572fafd6282756669 /include/connection.h
parent194838af39aa5fc823571afe9d61b2453573a32d (diff)
Optimized some static structs
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1370 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/connection.h')
-rw-r--r--include/connection.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/connection.h b/include/connection.h
index b9be696fe..c6adedf26 100644
--- a/include/connection.h
+++ b/include/connection.h
@@ -73,7 +73,7 @@ class ircd_connector : public Extensible
/** State. STATE_NOAUTH_INBOUND, STATE_NOAUTH_OUTBOUND
* STATE_SYNC, STATE_DISCONNECTED, STATE_CONNECTED
*/
- int state;
+ char state;
/** PRIVATE function to set the host address and port to connect to
*/
@@ -250,7 +250,7 @@ class connection : public Extensible
/** Used by userrec to indicate the registration status of the connection
*/
- short int registered;
+ char registered;
/** Time the connection was last pinged
*/
@@ -268,10 +268,6 @@ class connection : public Extensible
*/
time_t nping;
- //char internal_addr[MAXBUF];
-
- //int internal_port;
-
/** With a serverrec, this is a list of all established server connections.
* With a userrec this is unused.
*/