]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/connection.h
Re-added required parts of connection.h
[user/henk/code/inspircd.git] / include / connection.h
index c996e0abd4540a4e0ffb8164a90a68835cd7bce4..ab7bd81e1f68c46fce734c801cfdeee1c19c0316 100644 (file)
-/*
-
-*/
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *                       E-mail:
+ *                <brain@chatspike.net>
+ *               <Craig@chatspike.net>
+ *     
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
 
 #include "inspircd_config.h"
 #include "base.h"
 #include <string>
 #include <map>
-#include <sys/socket.h>
 #include <sys/types.h>
+#include <sys/socket.h>
 #include <netdb.h>
 #include <netinet/in.h>
 #include <unistd.h>
 #include <errno.h>
 #include <time.h>
+#include <vector>
+#include <deque>
+#include <sstream>
 
 #ifndef __CONNECTION_H__
 #define __CONNECTION_H__
 
-#define PT_SYN_ONLY 0
-#define PT_ACK_ONLY 1
-#define PT_SYN_WITH_DATA 2
-#define PT_KEY_EXCHANGE 3
-
-
-class packet : public classbase
+/** Please note: classes serverrec and userrec both inherit from class connection.
+ */
+class connection : public Extensible
 {
  public:
-       long key;
-       int id;
-       short int type;
-       char data[MAXBUF];
+       /** File descriptor of the connection
+        */
+       int fd;
+       
+       /** Hostname of connection. Not used if this is a serverrec
+        */
+       char host[160];
+       
+       /** IP of connection.
+        */
+       char ip[16];
+       
+       /** Stats counter for bytes inbound
+        */
+       int bytes_in;
 
-       packet();
-       ~packet();
-};
+       /** Stats counter for bytes outbound
+        */
+       int bytes_out;
 
+       /** Stats counter for commands inbound
+        */
+       int cmds_in;
 
-class connection : public classbase
-{
- public:
-       long key;
-       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;
+       /** Stats counter for commands outbound
+        */
+       int cmds_out;
+
+       /** True if server/user has authenticated, false if otherwise
+        */
        bool haspassed;
+
+       /** Port number
+        * For a userrec, this is the port they connected to the network on.
+        * For a serverrec this is the current listening port of the serverrec object.
+        */
        int port;
-       int registered;
-       short int state;
+       
+       /** Used by userrec to indicate the registration status of the connection
+        */
+       char registered;
+       
+       /** Time the connection was last pinged
+        */
        time_t lastping;
+       
+       /** Time the connection was created, set in the constructor
+        */
        time_t signon;
+       
+       /** Time that the connection last sent data, used to calculate idle time
+        */
        time_t idle_lastmsg;
+       
+       /** Used by PING checks with clients
+        */
        time_t nping;
-       char internal_addr[1024];
-       int internal_port;
        
+       /** Default constructor
+        */
        connection();
-       bool CreateListener(char* host, int p);
-       bool BeginLink(char* targethost, int port, char* password);
-       void TerminateLink(char* targethost);
-       bool SendPacket(char *message, char* host, int port, long ourkey);
-       bool RecvPacket(char *message, char* host, int &prt, long &theirkey);
-       bool SendSYN(char* host, int port);
-       bool SendACK(char* host, int port, int reply_id);
-       long GenKey();
 };
 
 
 #endif
 
+