client.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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.42.2.3 2007/04/03 22:08:52 fw Exp $
  12. *
  13. * Client management (header)
  14. */
  15. #ifndef __client_h__
  16. #define __client_h__
  17. #define CLIENT_UNKNOWN 1 /* connection of unknown type */
  18. #define CLIENT_GOTPASS 2 /* client did send PASS */
  19. #define CLIENT_GOTNICK 4 /* client did send NICK */
  20. #define CLIENT_GOTUSER 8 /* client did send USER */
  21. #define CLIENT_USER 16 /* client is an IRC user */
  22. #define CLIENT_SERVER 32 /* client is a server */
  23. #define CLIENT_SERVICE 64 /* client is a service */
  24. #define CLIENT_UNKNOWNSERVER 128 /* unregistered server connection */
  25. #define CLIENT_TYPE int
  26. #include "defines.h"
  27. #if defined(__client_c__) | defined(S_SPLINT_S)
  28. typedef struct _CLIENT
  29. {
  30. time_t starttime; /* Start time of link */
  31. char id[CLIENT_ID_LEN]; /* nick (user) / ID (server) */
  32. UINT32 hash; /* hash of lower-case ID */
  33. POINTER *next; /* pointer to next client structure */
  34. CLIENT_TYPE type; /* type of client, see CLIENT_xxx */
  35. CONN_ID conn_id; /* ID of the connection (if local) or NONE (remote) */
  36. struct _CLIENT *introducer; /* ID of the servers which the client is connected to */
  37. struct _CLIENT *topserver; /* toplevel servers (only valid if client is a server) */
  38. char pwd[CLIENT_PASS_LEN]; /* password received of the client */
  39. char host[CLIENT_HOST_LEN]; /* hostname of the client */
  40. char user[CLIENT_USER_LEN]; /* user name ("login") */
  41. char info[CLIENT_INFO_LEN]; /* long user name (user) / info text (server) */
  42. char modes[CLIENT_MODE_LEN]; /* client modes */
  43. int hops, token, mytoken; /* "hops" and "Token" (see SERVER command) */
  44. bool oper_by_me; /* client is local IRC operator on this server? */
  45. char away[CLIENT_AWAY_LEN]; /* AWAY text (valid if mode 'a' is set) */
  46. char flags[CLIENT_FLAGS_LEN]; /* flags of the client */
  47. } CLIENT;
  48. #else
  49. typedef POINTER CLIENT;
  50. #endif
  51. typedef struct _WHOWAS
  52. {
  53. time_t time; /* time stamp of entry or 0 if unused */
  54. char id[CLIENT_NICK_LEN]; /* client nick name */
  55. char host[CLIENT_HOST_LEN]; /* hostname of the client */
  56. char user[CLIENT_USER_LEN]; /* user name ("login") */
  57. char info[CLIENT_INFO_LEN]; /* long user name */
  58. char server[CLIENT_HOST_LEN]; /* server name */
  59. } WHOWAS;
  60. GLOBAL void Client_Init PARAMS(( void ));
  61. GLOBAL void Client_Exit PARAMS(( void ));
  62. GLOBAL CLIENT *Client_NewLocal PARAMS(( CONN_ID Idx, char *Hostname, int Type, bool Idented ));
  63. GLOBAL CLIENT *Client_NewRemoteServer PARAMS(( CLIENT *Introducer, char *Hostname, CLIENT *TopServer, int Hops, int Token, char *Info, bool Idented ));
  64. GLOBAL CLIENT *Client_NewRemoteUser PARAMS(( CLIENT *Introducer, char *Nick, int Hops, char *User, char *Hostname, int Token, char *Modes, char *Info, bool Idented ));
  65. GLOBAL void Client_Destroy PARAMS(( CLIENT *Client, char *LogMsg, char *FwdMsg, bool SendQuit ));
  66. GLOBAL CLIENT *Client_ThisServer PARAMS(( void ));
  67. GLOBAL CLIENT *Client_GetFromToken PARAMS(( CLIENT *Client, int Token ));
  68. GLOBAL CLIENT *Client_Search PARAMS(( char *ID ));
  69. GLOBAL CLIENT *Client_First PARAMS(( void ));
  70. GLOBAL CLIENT *Client_Next PARAMS(( CLIENT *c ));
  71. GLOBAL int Client_Type PARAMS(( CLIENT *Client ));
  72. GLOBAL CONN_ID Client_Conn PARAMS(( CLIENT *Client ));
  73. GLOBAL char *Client_ID PARAMS(( CLIENT *Client ));
  74. GLOBAL char *Client_Mask PARAMS(( CLIENT *Client ));
  75. GLOBAL char *Client_Info PARAMS(( CLIENT *Client ));
  76. GLOBAL char *Client_User PARAMS(( CLIENT *Client ));
  77. GLOBAL char *Client_Hostname PARAMS(( CLIENT *Client ));
  78. GLOBAL char *Client_Password PARAMS(( CLIENT *Client ));
  79. GLOBAL char *Client_Modes PARAMS(( CLIENT *Client ));
  80. GLOBAL char *Client_Flags PARAMS(( CLIENT *Client ));
  81. GLOBAL CLIENT *Client_Introducer PARAMS(( CLIENT *Client ));
  82. GLOBAL bool Client_OperByMe PARAMS(( CLIENT *Client ));
  83. GLOBAL int Client_Hops PARAMS(( CLIENT *Client ));
  84. GLOBAL int Client_Token PARAMS(( CLIENT *Client ));
  85. GLOBAL int Client_MyToken PARAMS(( CLIENT *Client ));
  86. GLOBAL CLIENT *Client_TopServer PARAMS(( CLIENT *Client ));
  87. GLOBAL CLIENT *Client_NextHop PARAMS(( CLIENT *Client ));
  88. GLOBAL char *Client_Away PARAMS(( CLIENT *Client ));
  89. GLOBAL time_t Client_StartTime PARAMS(( CLIENT *Client ));
  90. GLOBAL bool Client_HasMode PARAMS(( CLIENT *Client, char Mode ));
  91. GLOBAL void Client_SetHostname PARAMS(( CLIENT *Client, char *Hostname ));
  92. GLOBAL void Client_SetID PARAMS(( CLIENT *Client, char *Nick ));
  93. GLOBAL void Client_SetUser PARAMS(( CLIENT *Client, char *User, bool Idented ));
  94. GLOBAL void Client_SetInfo PARAMS(( CLIENT *Client, char *Info ));
  95. GLOBAL void Client_SetPassword PARAMS(( CLIENT *Client, char *Pwd ));
  96. GLOBAL void Client_SetType PARAMS(( CLIENT *Client, int Type ));
  97. GLOBAL void Client_SetHops PARAMS(( CLIENT *Client, int Hops ));
  98. GLOBAL void Client_SetToken PARAMS(( CLIENT *Client, int Token ));
  99. GLOBAL void Client_SetOperByMe PARAMS(( CLIENT *Client, bool OperByMe ));
  100. GLOBAL void Client_SetModes PARAMS(( CLIENT *Client, char *Modes ));
  101. GLOBAL void Client_SetFlags PARAMS(( CLIENT *Client, char *Flags ));
  102. GLOBAL void Client_SetIntroducer PARAMS(( CLIENT *Client, CLIENT *Introducer ));
  103. GLOBAL void Client_SetAway PARAMS(( CLIENT *Client, char *Txt ));
  104. GLOBAL bool Client_ModeAdd PARAMS(( CLIENT *Client, char Mode ));
  105. GLOBAL bool Client_ModeDel PARAMS(( CLIENT *Client, char Mode ));
  106. GLOBAL bool Client_CheckNick PARAMS(( CLIENT *Client, char *Nick ));
  107. GLOBAL bool Client_CheckID PARAMS(( CLIENT *Client, char *ID ));
  108. GLOBAL long Client_UserCount PARAMS(( void ));
  109. GLOBAL long Client_ServiceCount PARAMS(( void ));
  110. GLOBAL long Client_ServerCount PARAMS(( void ));
  111. GLOBAL unsigned long Client_OperCount PARAMS(( void ));
  112. GLOBAL unsigned long Client_UnknownCount PARAMS(( void ));
  113. GLOBAL long Client_MyUserCount PARAMS(( void ));
  114. GLOBAL long Client_MyServiceCount PARAMS(( void ));
  115. GLOBAL unsigned long Client_MyServerCount PARAMS(( void ));
  116. GLOBAL long Client_MaxUserCount PARAMS(( void ));
  117. GLOBAL long Client_MyMaxUserCount PARAMS(( void ));
  118. GLOBAL bool Client_IsValidNick PARAMS(( const char *Nick ));
  119. GLOBAL WHOWAS *Client_GetWhowas PARAMS(( void ));
  120. GLOBAL int Client_GetLastWhowasIndex PARAMS(( void ));
  121. GLOBAL void Client_RegisterWhowas PARAMS(( CLIENT *Client ));
  122. #endif
  123. /* -eof- */