Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / include / whocmds.h
1 /*
2  * whocmds.h
3  *
4  * $Id$
5  */
6 #ifndef INCLUDED_whocmds_h
7 #define INCLUDED_whocmds_h
8 #ifndef INCLUDED_config_h
9 #include "config.h"
10 #endif
11
12 struct Client;
13 struct Channel;
14
15
16 /*
17  * m_who() 
18  * m_who with support routines rewritten by Nemesi, August 1997
19  * - Alghoritm have been flattened (no more recursive)
20  * - Several bug fixes
21  * - Strong performance improvement
22  * - Added possibility to have specific fields in the output
23  * See readme.who for further details.
24  */
25
26 /* Macros used only in here by m_who and its support functions */
27
28 #define WHOSELECT_OPER 1
29 #define WHOSELECT_EXTRA 2
30
31 #define WHO_FIELD_QTY 1
32 #define WHO_FIELD_CHA 2
33 #define WHO_FIELD_UID 4
34 #define WHO_FIELD_NIP 8
35 #define WHO_FIELD_HOS 16
36 #define WHO_FIELD_SER 32
37 #define WHO_FIELD_NIC 64
38 #define WHO_FIELD_FLA 128
39 #define WHO_FIELD_DIS 256
40 #define WHO_FIELD_REN 512
41
42 #define WHO_FIELD_DEF ( WHO_FIELD_NIC | WHO_FIELD_UID | WHO_FIELD_HOS | WHO_FIELD_SER )
43
44 #define IS_VISIBLE_USER(s,ac) ((s==ac) || (!IsInvisible(ac)))
45
46 #if defined(SHOW_INVISIBLE_LUSERS) || defined(SHOW_ALL_INVISIBLE_USERS)
47 #define SEE_LUSER(s, ac, b) (IS_VISIBLE_USER(s, ac) || ((b & WHOSELECT_EXTRA) && MyConnect(ac) && IsAnOper(s)))
48 #else
49 #define SEE_LUSER(s, ac, b) (IS_VISIBLE_USER(s, ac))
50 #endif
51
52 #ifdef SHOW_ALL_INVISIBLE_USERS
53 #define SEE_USER(s, ac, b) (SEE_LUSER(s, ac, b) || ((b & WHOSELECT_EXTRA) && IsOper(s)))
54 #else
55 #define SEE_USER(s, ac, b) (SEE_LUSER(s, ac, b))
56 #endif
57
58 #ifdef UNLIMIT_OPER_QUERY
59 #define SHOW_MORE(sptr, counter) (IsAnOper(sptr) || (!(counter-- < 0)) )
60 #else
61 #define SHOW_MORE(sptr, counter) (!(counter-- < 0))
62 #endif
63
64 #ifdef OPERS_SEE_IN_SECRET_CHANNELS
65 #ifdef LOCOP_SEE_IN_SECRET_CHANNELS
66 #define SEE_CHANNEL(s, chptr, b) (!SecretChannel(chptr) || ((b & WHOSELECT_EXTRA) && IsAnOper(s)))
67 #else
68 #define SEE_CHANNEL(s, chptr, b) (!SecretChannel(chptr) || ((b & WHOSELECT_EXTRA) && IsOper(s)))
69 #endif
70 #else
71 #define SEE_CHANNEL(s, chptr, b) (!SecretChannel(chptr))
72 #endif
73
74 #define MAX_WHOIS_LINES 50
75
76 /*
77  * Prototypes
78  */
79 extern void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan,
80                    int fields, char* qrt);
81
82
83 #endif /* INCLUDED_whocmds_h */