client.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors.
  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. #ifndef __client_h__
  12. #define __client_h__
  13. /**
  14. * @file
  15. * Client management (header)
  16. */
  17. #define CLIENT_UNKNOWN 0x0001 /* connection of unknown type */
  18. #define CLIENT_GOTPASS 0x0002 /* client did send PASS */
  19. #define CLIENT_GOTNICK 0x0004 /* client did send NICK */
  20. #define CLIENT_GOTUSER 0x0008 /* client did send USER */
  21. #define CLIENT_USER 0x0010 /* client is an IRC user */
  22. #define CLIENT_SERVER 0x0020 /* client is a server */
  23. #define CLIENT_SERVICE 0x0040 /* client is a service */
  24. #define CLIENT_UNKNOWNSERVER 0x0080 /* unregistered server connection */
  25. #define CLIENT_GOTPASS_2813 0x0100 /* client did send PASS, RFC 2813 style */
  26. #ifndef STRICT_RFC
  27. # define CLIENT_WAITAUTHPING 0x0200 /* waiting for AUTH PONG from client */
  28. #endif
  29. #define CLIENT_WAITCAPEND 0x0400 /* waiting for "CAP END" command */
  30. #define CLIENT_ANY 0xFFFF
  31. #define CLIENT_TYPE int
  32. #include "defines.h"
  33. #if defined(__client_c__) | defined(__client_cap_c__) | defined(S_SPLINT_S)
  34. typedef struct _CLIENT
  35. {
  36. time_t starttime; /* Start time of link */
  37. char id[CLIENT_ID_LEN]; /* nick (user) / ID (server) */
  38. UINT32 hash; /* hash of lower-case ID */
  39. POINTER *next; /* pointer to next client structure */
  40. CLIENT_TYPE type; /* type of client, see CLIENT_xxx */
  41. CONN_ID conn_id; /* ID of the connection (if local) or NONE (remote) */
  42. struct _CLIENT *introducer; /* ID of the servers which the client is connected to */
  43. struct _CLIENT *topserver; /* toplevel servers (only valid if client is a server) */
  44. char host[CLIENT_HOST_LEN]; /* hostname of the client */
  45. char *cloaked; /* cloaked hostname of the client */
  46. char *ipa_text; /* textual representaton of IP address */
  47. char user[CLIENT_USER_LEN]; /* user name ("login") */
  48. #if defined(PAM)
  49. char orig_user[CLIENT_AUTHUSER_LEN];
  50. /* original user name supplied by USER command */
  51. #endif
  52. char info[CLIENT_INFO_LEN]; /* long user name (user) / info text (server) */
  53. char modes[CLIENT_MODE_LEN]; /* client modes */
  54. int hops, token, mytoken; /* "hops" and "Token" (see SERVER command) */
  55. char *away; /* AWAY text (valid if mode 'a' is set) */
  56. char flags[CLIENT_FLAGS_LEN]; /* flags of the client */
  57. char *account_name; /* login account (for services) */
  58. int capabilities; /* enabled IRC capabilities */
  59. } CLIENT;
  60. #else
  61. typedef POINTER CLIENT;
  62. #endif
  63. typedef struct _WHOWAS
  64. {
  65. time_t time; /* time stamp of entry or 0 if unused */
  66. char id[CLIENT_NICK_LEN]; /* client nickname */
  67. char host[CLIENT_HOST_LEN]; /* hostname of the client */
  68. char user[CLIENT_USER_LEN]; /* user name ("login") */
  69. char info[CLIENT_INFO_LEN]; /* long user name */
  70. char server[CLIENT_HOST_LEN]; /* server name */
  71. } WHOWAS;
  72. GLOBAL void Client_Init PARAMS(( void ));
  73. GLOBAL void Client_Exit PARAMS(( void ));
  74. GLOBAL CLIENT *Client_NewLocal PARAMS(( CONN_ID Idx, const char *Hostname, int Type, bool Idented ));
  75. GLOBAL CLIENT *Client_NewRemoteServer PARAMS(( CLIENT *Introducer, const char *Hostname, CLIENT *TopServer, int Hops, int Token, const char *Info, bool Idented ));
  76. GLOBAL CLIENT *Client_NewRemoteUser PARAMS(( CLIENT *Introducer, const char *Nick, int Hops, const char *User, const char *Hostname, int Token, const char *Modes, const char *Info, bool Idented ));
  77. GLOBAL void Client_Destroy PARAMS(( CLIENT *Client, const char *LogMsg, const char *FwdMsg, bool SendQuit ));
  78. GLOBAL CLIENT *Client_ThisServer PARAMS(( void ));
  79. GLOBAL CLIENT *Client_GetFromToken PARAMS(( CLIENT *Client, int Token ));
  80. GLOBAL bool Client_Announce PARAMS(( CLIENT *Client, CLIENT *Prefix, CLIENT *User ));
  81. GLOBAL CLIENT *Client_Search PARAMS(( const char *ID ));
  82. GLOBAL CLIENT *Client_SearchServer PARAMS(( const char *ID ));
  83. GLOBAL CLIENT *Client_First PARAMS(( void ));
  84. GLOBAL CLIENT *Client_Next PARAMS(( CLIENT *c ));
  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_MaskCloaked PARAMS(( CLIENT *Client ));
  90. GLOBAL char *Client_Info PARAMS(( CLIENT *Client ));
  91. GLOBAL char *Client_User PARAMS(( CLIENT *Client ));
  92. #ifdef PAM
  93. GLOBAL char *Client_OrigUser PARAMS(( CLIENT *Client ));
  94. #endif
  95. GLOBAL char *Client_Hostname PARAMS(( CLIENT *Client ));
  96. GLOBAL char *Client_HostnameCloaked PARAMS((CLIENT *Client));
  97. GLOBAL char *Client_HostnameDisplayed PARAMS(( CLIENT *Client ));
  98. GLOBAL const char *Client_IPAText PARAMS(( CLIENT *Client ));
  99. GLOBAL char *Client_Modes PARAMS(( CLIENT *Client ));
  100. GLOBAL char *Client_Flags PARAMS(( CLIENT *Client ));
  101. GLOBAL CLIENT *Client_Introducer PARAMS(( CLIENT *Client ));
  102. GLOBAL int Client_Hops PARAMS(( CLIENT *Client ));
  103. GLOBAL int Client_Token PARAMS(( CLIENT *Client ));
  104. GLOBAL int Client_MyToken PARAMS(( CLIENT *Client ));
  105. GLOBAL CLIENT *Client_TopServer PARAMS(( CLIENT *Client ));
  106. GLOBAL CLIENT *Client_NextHop PARAMS(( CLIENT *Client ));
  107. GLOBAL char *Client_Away PARAMS(( CLIENT *Client ));
  108. GLOBAL char *Client_AccountName PARAMS((CLIENT *Client));
  109. GLOBAL time_t Client_StartTime PARAMS(( CLIENT *Client ));
  110. GLOBAL bool Client_HasMode PARAMS(( CLIENT *Client, char Mode ));
  111. GLOBAL bool Client_HasFlag PARAMS(( CLIENT *Client, char Flag ));
  112. GLOBAL void Client_SetHostname PARAMS(( CLIENT *Client, const char *Hostname ));
  113. GLOBAL void Client_SetIPAText PARAMS(( CLIENT *Client, const char *IPAText ));
  114. GLOBAL void Client_SetID PARAMS(( CLIENT *Client, const char *Nick ));
  115. GLOBAL void Client_SetUser PARAMS(( CLIENT *Client, const char *User, bool Idented ));
  116. GLOBAL void Client_SetOrigUser PARAMS(( CLIENT *Client, const char *User ));
  117. GLOBAL void Client_SetInfo PARAMS(( CLIENT *Client, const char *Info ));
  118. GLOBAL void Client_SetType PARAMS(( CLIENT *Client, int Type ));
  119. GLOBAL void Client_SetHops PARAMS(( CLIENT *Client, int Hops ));
  120. GLOBAL void Client_SetToken PARAMS(( CLIENT *Client, int Token ));
  121. GLOBAL void Client_SetModes PARAMS(( CLIENT *Client, const char *Modes ));
  122. GLOBAL void Client_SetFlags PARAMS(( CLIENT *Client, const char *Flags ));
  123. GLOBAL void Client_SetIntroducer PARAMS(( CLIENT *Client, CLIENT *Introducer ));
  124. GLOBAL void Client_SetAway PARAMS(( CLIENT *Client, const char *Txt ));
  125. GLOBAL void Client_SetAccountName PARAMS((CLIENT *Client, const char *AccountName));
  126. GLOBAL bool Client_ModeAdd PARAMS(( CLIENT *Client, char Mode ));
  127. GLOBAL bool Client_ModeDel PARAMS(( CLIENT *Client, char Mode ));
  128. GLOBAL bool Client_CheckNick PARAMS(( CLIENT *Client, char *Nick ));
  129. GLOBAL bool Client_CheckID PARAMS(( CLIENT *Client, char *ID ));
  130. GLOBAL long Client_UserCount PARAMS(( void ));
  131. GLOBAL long Client_ServiceCount PARAMS(( void ));
  132. GLOBAL long Client_ServerCount PARAMS(( void ));
  133. GLOBAL unsigned long Client_OperCount PARAMS(( void ));
  134. GLOBAL unsigned long Client_UnknownCount PARAMS(( void ));
  135. GLOBAL long Client_MyUserCount PARAMS(( void ));
  136. GLOBAL long Client_MyServiceCount PARAMS(( void ));
  137. GLOBAL unsigned long Client_MyServerCount PARAMS(( void ));
  138. GLOBAL long Client_MaxUserCount PARAMS(( void ));
  139. GLOBAL long Client_MyMaxUserCount PARAMS(( void ));
  140. GLOBAL bool Client_IsValidNick PARAMS(( const char *Nick ));
  141. GLOBAL WHOWAS *Client_GetWhowas PARAMS(( void ));
  142. GLOBAL int Client_GetLastWhowasIndex PARAMS(( void ));
  143. GLOBAL void Client_RegisterWhowas PARAMS(( CLIENT *Client ));
  144. GLOBAL const char *Client_TypeText PARAMS((CLIENT *Client));
  145. GLOBAL void Client_Reject PARAMS((CLIENT *Client, const char *Reason,
  146. bool InformClient));
  147. GLOBAL void Client_Introduce PARAMS((CLIENT *From, CLIENT *Client, int Type));
  148. GLOBAL void Client_UpdateCloakedHostname PARAMS((CLIENT *Client,
  149. CLIENT *Originator,
  150. const char *hostname));
  151. #ifdef DEBUG
  152. GLOBAL void Client_DebugDump PARAMS((void));
  153. #endif
  154. #endif
  155. /* -eof- */