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