X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fconnection.h;h=f24fc303d18c7925602d656f9e836a880258ea16;hb=8c2d96013084de950e3a63be4ae6ed626c4093ab;hp=2dd11633bc1b181ff25bae426eaf477673ab4aa8;hpb=5232506d5eade7ab98ff39ee98577b04b257bbb2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/connection.h b/include/connection.h index 2dd11633b..f24fc303d 100644 --- a/include/connection.h +++ b/include/connection.h @@ -1,122 +1,79 @@ -/* - -*/ - -#include "inspircd_config.h" -#include "base.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ #ifndef __CONNECTION_H__ #define __CONNECTION_H__ -#define STATE_DISCONNECTED 0 -#define STATE_CONNECTED 1 -#define STATE_SYNC 2 -#define STATE_NOAUTH_INBOUND 3 -#define STATE_NOAUTH_OUTBOUND 4 +#include +#include "inspircd_config.h" +#include "base.h" +#include "socketengine.h" -/** Each connection has one or more of these - * each represents ONE outbound connection to another ircd - * so each inbound has multiple outbounds. +/** connection is the base class of User, and holds basic user properties. + * This can be extended for holding other user-like objects in the future. */ -class ircd_connector : public classbase +class CoreExport connection : public EventHandler { - private: - /** Sockaddr of the outbound ip and port - */ - sockaddr_in addr; - - /** File descriptor of the outbound connection - */ - int fd; - - /** Server name - */ - std::string servername; - - /** Server names of servers that this server is linked to - * So for A->B->C, if this was the record for B it would contain A and C - * whilever both servers are connected to B. - */ - std::vector routes; - - /** State. STATE_NOAUTH_INBOUND, STATE_NOAUTH_OUTBOUND - * STATE_SYNC, STATE_DISCONNECTED, STATE_CONNECTED - */ - int state; - - bool SetHostAddress(char* host, int port); - public: - - bool MakeOutboundConnection(char* host, int port); - std::string GetServerName(); - void SetServerName(std::string serv); - int GetDescriptor(); - void SetDescriptor(int fd); - int GetState(); - void SetState(int state); -}; + /** Hostname of connection. + * This should be valid as per RFC1035. + */ + char host[65]; + /** Stats counter for bytes inbound + */ + int bytes_in; -class packet : public classbase -{ - public: - long key; - int id; - short int type; - char data[MAXBUF]; + /** Stats counter for bytes outbound + */ + int bytes_out; - packet(); - ~packet(); -}; + /** Stats counter for commands inbound + */ + int cmds_in; + /** Stats counter for commands outbound + */ + int cmds_out; -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; + /** True if user has authenticated, false if otherwise + */ bool haspassed; - int port; - int registered; - short int state; + + /** Used by User to indicate the registration status of the connection + * It is a bitfield of the REG_NICK, REG_USER and REG_ALL bits to indicate + * the connection state. + */ + char registered; + + /** Time the connection was last pinged + */ time_t lastping; + + /** Time the connection was created, set in the constructor. This + * may be different from the time the user's classbase object was + * created. + */ time_t signon; + + /** Time that the connection last sent a message, used to calculate idle time + */ time_t idle_lastmsg; - time_t nping; - char internal_addr[1024]; - int internal_port; - std::vector connectors; - connection(); - bool CreateListener(char* host, int p); - bool BeginLink(char* targethost, int port, char* password, char* servername); - void TerminateLink(char* targethost); - bool SendPacket(char *message, char* host); - bool RecvPacket(std::deque &messages, char* host); - ircd_connector* FindHost(std::string host); - bool AddIncoming(int fd,char* targethost); - long GenKey(); + /** Used by PING checking code + */ + time_t nping; }; #endif -