Blame


1 38b9cb88 2001-12-14 alex /*
2 38b9cb88 2001-12-14 alex * ngIRCd -- The Next Generation IRC Daemon
3 1547f76c 2002-01-02 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 38b9cb88 2001-12-14 alex *
5 c7f07523 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 c7f07523 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 c7f07523 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 c7f07523 2002-12-12 alex * (at your option) any later version.
9 c7f07523 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 38b9cb88 2001-12-14 alex *
11 a4660f40 2005-06-12 alex * $Id: client.h,v 1.39 2005/06/12 16:18:49 alex Exp $
12 38b9cb88 2001-12-14 alex *
13 c7f07523 2002-12-12 alex * Client management (header)
14 38b9cb88 2001-12-14 alex */
15 38b9cb88 2001-12-14 alex
16 38b9cb88 2001-12-14 alex
17 38b9cb88 2001-12-14 alex #ifndef __client_h__
18 38b9cb88 2001-12-14 alex #define __client_h__
19 38b9cb88 2001-12-14 alex
20 38b9cb88 2001-12-14 alex
21 c7f07523 2002-12-12 alex #define CLIENT_UNKNOWN 1 /* connection of unknown type */
22 c7f07523 2002-12-12 alex #define CLIENT_GOTPASS 2 /* client did send PASS */
23 c7f07523 2002-12-12 alex #define CLIENT_GOTNICK 4 /* client did send NICK */
24 c7f07523 2002-12-12 alex #define CLIENT_GOTUSER 8 /* client did send USER */
25 c7f07523 2002-12-12 alex #define CLIENT_USER 16 /* client is an IRC user */
26 c7f07523 2002-12-12 alex #define CLIENT_UNKNOWNSERVER 32 /* unregistered server connection */
27 c7f07523 2002-12-12 alex #define CLIENT_GOTPASSSERVER 64 /* client did send PASS in "server style" */
28 c7f07523 2002-12-12 alex #define CLIENT_SERVER 128 /* client is a server */
29 c7f07523 2002-12-12 alex #define CLIENT_SERVICE 256 /* client is a service */
30 38b9cb88 2001-12-14 alex
31 8adff592 2005-03-19 fw #define CLIENT_TYPE int
32 38b9cb88 2001-12-14 alex
33 1e59617d 2002-11-30 alex
34 95a4b1b1 2002-03-25 alex #if defined(__client_c__) | defined(S_SPLINT_S)
35 ca33cbda 2002-03-12 alex
36 38b9cb88 2001-12-14 alex typedef struct _CLIENT
37 38b9cb88 2001-12-14 alex {
38 a4660f40 2005-06-12 alex time_t starttime; /* Start time of link */
39 8adff592 2005-03-19 fw char id[CLIENT_ID_LEN]; /* nick (user) / ID (server) */
40 c7f07523 2002-12-12 alex UINT32 hash; /* hash of lower-case ID */
41 c7f07523 2002-12-12 alex POINTER *next; /* pointer to next client structure */
42 c7f07523 2002-12-12 alex CLIENT_TYPE type; /* type of client, see CLIENT_xxx */
43 c7f07523 2002-12-12 alex CONN_ID conn_id; /* ID of the connection (if local) or NONE (remote) */
44 c7f07523 2002-12-12 alex struct _CLIENT *introducer; /* ID of the servers which the client is connected to */
45 c7f07523 2002-12-12 alex struct _CLIENT *topserver; /* toplevel servers (only valid if client is a server) */
46 8adff592 2005-03-19 fw char pwd[CLIENT_PASS_LEN]; /* password received of the client */
47 8adff592 2005-03-19 fw char host[CLIENT_HOST_LEN]; /* hostname of the client */
48 8adff592 2005-03-19 fw char user[CLIENT_USER_LEN]; /* user name ("login") */
49 8adff592 2005-03-19 fw char info[CLIENT_INFO_LEN]; /* long user name (user) / info text (server) */
50 8adff592 2005-03-19 fw char modes[CLIENT_MODE_LEN]; /* client modes */
51 8adff592 2005-03-19 fw int hops, token, mytoken; /* "hops" and "Token" (see SERVER command) */
52 8adff592 2005-03-19 fw bool oper_by_me; /* client is local IRC operator on this server? */
53 8adff592 2005-03-19 fw char away[CLIENT_AWAY_LEN]; /* AWAY text (valid if mode 'a' is set) */
54 8adff592 2005-03-19 fw char flags[CLIENT_FLAGS_LEN]; /* flags of the client */
55 38b9cb88 2001-12-14 alex } CLIENT;
56 ca33cbda 2002-03-12 alex
57 f7551900 2002-01-04 alex #else
58 ca33cbda 2002-03-12 alex
59 f7551900 2002-01-04 alex typedef POINTER CLIENT;
60 ca33cbda 2002-03-12 alex
61 f7551900 2002-01-04 alex #endif
62 38b9cb88 2001-12-14 alex
63 38b9cb88 2001-12-14 alex
64 b1c14598 2005-05-16 alex typedef struct _WHOWAS
65 b1c14598 2005-05-16 alex {
66 b1c14598 2005-05-16 alex time_t time; /* time stamp of entry or 0 if unused */
67 b1c14598 2005-05-16 alex char id[CLIENT_NICK_LEN]; /* client nick name */
68 b1c14598 2005-05-16 alex char host[CLIENT_HOST_LEN]; /* hostname of the client */
69 b1c14598 2005-05-16 alex char user[CLIENT_USER_LEN]; /* user name ("login") */
70 b1c14598 2005-05-16 alex char info[CLIENT_INFO_LEN]; /* long user name */
71 b1c14598 2005-05-16 alex char server[CLIENT_HOST_LEN]; /* server name */
72 b1c14598 2005-05-16 alex } WHOWAS;
73 b1c14598 2005-05-16 alex
74 b1c14598 2005-05-16 alex
75 8adff592 2005-03-19 fw GLOBAL void Client_Init PARAMS(( void ));
76 8adff592 2005-03-19 fw GLOBAL void Client_Exit PARAMS(( void ));
77 38b9cb88 2001-12-14 alex
78 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_NewLocal PARAMS(( CONN_ID Idx, char *Hostname, int Type, bool Idented ));
79 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_NewRemoteServer PARAMS(( CLIENT *Introducer, char *Hostname, CLIENT *TopServer, int Hops, int Token, char *Info, bool Idented ));
80 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_NewRemoteUser PARAMS(( CLIENT *Introducer, char *Nick, int Hops, char *User, char *Hostname, int Token, char *Modes, char *Info, bool Idented ));
81 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_New PARAMS(( CONN_ID Idx, CLIENT *Introducer, CLIENT *TopServer, int Type, char *ID, char *User, char *Hostname, char *Info, int Hops, int Token, char *Modes, bool Idented ));
82 f7551900 2002-01-04 alex
83 8adff592 2005-03-19 fw GLOBAL void Client_Destroy PARAMS(( CLIENT *Client, char *LogMsg, char *FwdMsg, bool SendQuit ));
84 939767d5 2003-01-15 alex #ifdef CONN_MODULE
85 8adff592 2005-03-19 fw GLOBAL void Client_DestroyNow PARAMS(( CLIENT *Client ));
86 939767d5 2003-01-15 alex #endif
87 07903baa 2002-01-03 alex
88 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_ThisServer PARAMS(( void ));
89 07903baa 2002-01-03 alex
90 939767d5 2003-01-15 alex GLOBAL CLIENT *Client_GetFromConn PARAMS(( CONN_ID Idx ));
91 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_GetFromToken PARAMS(( CLIENT *Client, int Token ));
92 07903baa 2002-01-03 alex
93 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_Search PARAMS(( char *ID ));
94 8adff592 2005-03-19 fw GLOBAL CLIENT *Client_First PARAMS(( void ));
95 939767d5 2003-01-15 alex GLOBAL CLIENT *Client_Next PARAMS(( CLIENT *c ));
96 38b9cb88 2001-12-14 alex
97 8adff592 2005-03-19 fw GLOBAL int Client_Type PARAMS(( CLIENT *Client ));
98 939767d5 2003-01-15 alex GLOBAL CONN_ID Client_Conn PARAMS(( CLIENT *Client ));
99 8adff592 2005-03-19 fw GLOBAL char *Client_ID PARAMS(( CLIENT *Client ));
100 8adff592 2005-03-19 fw GLOBAL char *Client_Mask PARAMS(( CLIENT *Client ));
101 8adff592 2005-03-19 fw GLOBAL char *Client_Info PARAMS(( CLIENT *Client ));
102 8adff592 2005-03-19 fw GLOBAL char *Client_User PARAMS(( CLIENT *Client ));
103 8adff592 2005-03-19 fw GLOBAL char *Client_Hostname PARAMS(( CLIENT *Client ));
104 8adff592 2005-03-19 fw GLOBAL char *Client_Password PARAMS(( CLIENT *Client ));
105 8adff592 2005-03-19 fw GLOBAL char *Client_Modes PARAMS(( CLIENT *Client ));
106 8adff592 2005-03-19 fw GLOBAL char *Client_Flags PARAMS(( CLIENT *Client ));
107 939767d5 2003-01-15 alex GLOBAL CLIENT *Client_Introducer PARAMS(( CLIENT *Client ));
108 8adff592 2005-03-19 fw GLOBAL bool Client_OperByMe PARAMS(( CLIENT *Client ));
109 8adff592 2005-03-19 fw GLOBAL int Client_Hops PARAMS(( CLIENT *Client ));
110 8adff592 2005-03-19 fw GLOBAL int Client_Token PARAMS(( CLIENT *Client ));
111 8adff592 2005-03-19 fw GLOBAL int Client_MyToken PARAMS(( CLIENT *Client ));
112 939767d5 2003-01-15 alex GLOBAL CLIENT *Client_TopServer PARAMS(( CLIENT *Client ));
113 939767d5 2003-01-15 alex GLOBAL CLIENT *Client_NextHop PARAMS(( CLIENT *Client ));
114 8adff592 2005-03-19 fw GLOBAL char *Client_Away PARAMS(( CLIENT *Client ));
115 a4660f40 2005-06-12 alex GLOBAL time_t Client_StartTime PARAMS(( CLIENT *Client ));
116 3ad1bc00 2001-12-23 alex
117 8adff592 2005-03-19 fw GLOBAL bool Client_HasMode PARAMS(( CLIENT *Client, char Mode ));
118 f7551900 2002-01-04 alex
119 8adff592 2005-03-19 fw GLOBAL void Client_SetHostname PARAMS(( CLIENT *Client, char *Hostname ));
120 8adff592 2005-03-19 fw GLOBAL void Client_SetID PARAMS(( CLIENT *Client, char *Nick ));
121 8adff592 2005-03-19 fw GLOBAL void Client_SetUser PARAMS(( CLIENT *Client, char *User, bool Idented ));
122 8adff592 2005-03-19 fw GLOBAL void Client_SetInfo PARAMS(( CLIENT *Client, char *Info ));
123 8adff592 2005-03-19 fw GLOBAL void Client_SetPassword PARAMS(( CLIENT *Client, char *Pwd ));
124 8adff592 2005-03-19 fw GLOBAL void Client_SetType PARAMS(( CLIENT *Client, int Type ));
125 8adff592 2005-03-19 fw GLOBAL void Client_SetHops PARAMS(( CLIENT *Client, int Hops ));
126 8adff592 2005-03-19 fw GLOBAL void Client_SetToken PARAMS(( CLIENT *Client, int Token ));
127 8adff592 2005-03-19 fw GLOBAL void Client_SetOperByMe PARAMS(( CLIENT *Client, bool OperByMe ));
128 8adff592 2005-03-19 fw GLOBAL void Client_SetModes PARAMS(( CLIENT *Client, char *Modes ));
129 8adff592 2005-03-19 fw GLOBAL void Client_SetFlags PARAMS(( CLIENT *Client, char *Flags ));
130 8adff592 2005-03-19 fw GLOBAL void Client_SetIntroducer PARAMS(( CLIENT *Client, CLIENT *Introducer ));
131 8adff592 2005-03-19 fw GLOBAL void Client_SetAway PARAMS(( CLIENT *Client, char *Txt ));
132 f7551900 2002-01-04 alex
133 8adff592 2005-03-19 fw GLOBAL bool Client_ModeAdd PARAMS(( CLIENT *Client, char Mode ));
134 8adff592 2005-03-19 fw GLOBAL bool Client_ModeDel PARAMS(( CLIENT *Client, char Mode ));
135 f7551900 2002-01-04 alex
136 8adff592 2005-03-19 fw GLOBAL bool Client_CheckNick PARAMS(( CLIENT *Client, char *Nick ));
137 8adff592 2005-03-19 fw GLOBAL bool Client_CheckID PARAMS(( CLIENT *Client, char *ID ));
138 f7551900 2002-01-04 alex
139 8adff592 2005-03-19 fw GLOBAL long Client_UserCount PARAMS(( void ));
140 8adff592 2005-03-19 fw GLOBAL long Client_ServiceCount PARAMS(( void ));
141 8adff592 2005-03-19 fw GLOBAL long Client_ServerCount PARAMS(( void ));
142 8adff592 2005-03-19 fw GLOBAL long Client_OperCount PARAMS(( void ));
143 8adff592 2005-03-19 fw GLOBAL long Client_UnknownCount PARAMS(( void ));
144 8adff592 2005-03-19 fw GLOBAL long Client_MyUserCount PARAMS(( void ));
145 8adff592 2005-03-19 fw GLOBAL long Client_MyServiceCount PARAMS(( void ));
146 8adff592 2005-03-19 fw GLOBAL long Client_MyServerCount PARAMS(( void ));
147 8adff592 2005-03-19 fw GLOBAL long Client_MaxUserCount PARAMS(( void ));
148 8adff592 2005-03-19 fw GLOBAL long Client_MyMaxUserCount PARAMS(( void ));
149 b9d701db 2002-01-16 alex
150 8adff592 2005-03-19 fw GLOBAL bool Client_IsValidNick PARAMS(( char *Nick ));
151 b9d701db 2002-01-16 alex
152 b1c14598 2005-05-16 alex GLOBAL WHOWAS *Client_GetWhowas PARAMS(( void ));
153 b1c14598 2005-05-16 alex GLOBAL int Client_GetLastWhowasIndex PARAMS(( void ));
154 175b20bb 2002-02-06 alex
155 1aeaf64c 2005-05-17 alex GLOBAL void Client_RegisterWhowas PARAMS(( CLIENT *Client ));
156 b1c14598 2005-05-16 alex
157 1aeaf64c 2005-05-17 alex
158 38b9cb88 2001-12-14 alex #endif
159 38b9cb88 2001-12-14 alex
160 38b9cb88 2001-12-14 alex
161 38b9cb88 2001-12-14 alex /* -eof- */