diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2003-01-26 23:56:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2003-01-26 23:56:19 +0000 |
commit | c63086da8768084125f7d5d83ec7f0d0211ea221 (patch) | |
tree | e9278f37eccf63fbced2c3fb24c8dd349aa2b58b /include/connection.h~ | |
parent | f81a2e12b09634cacd4ccf9da584c835ee71bf24 (diff) |
removed crappy temp files
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@152 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/connection.h~')
-rw-r--r-- | include/connection.h~ | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/include/connection.h~ b/include/connection.h~ deleted file mode 100644 index d74d6d20f..000000000 --- a/include/connection.h~ +++ /dev/null @@ -1,44 +0,0 @@ -/* - -$Log$ -Revision 1.1 2003/01/26 23:52:59 brain -Modified documentation for base classes -Added base classes - -Revision 1.1 2003/01/26 20:15:00 brain -Added server classes for linking - - -*/ - -#include "inspircd_config.h" -#include "base.h" -#include <string> -#include <map.h> - -#ifndef __CONNECTION_H__ -#define __CONNECTION_H__ - -class connection : public classbase -{ - public: - int fd; // file descriptor - char host[256]; // hostname - long ip; // ipv4 address - char inbuf[MAXBUF]; // recvQ - long bytes_in; - long bytes_out; - long cmds_in; - long cmds_out; - bool haspassed; - int port; - int registered; - time_t lastping; - time_t signon; - time_t idle_lastmsg; - time_t nping; -}; - - -#endif - |