Author: Kev <klmitch@mit.edu>
[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 #define WHO_FIELD_IDL 1024
42
43 #define WHO_FIELD_DEF ( WHO_FIELD_NIC | WHO_FIELD_UID | WHO_FIELD_HOS | WHO_FIELD_SER )
44
45 #define IS_VISIBLE_USER(s,ac) ((s==ac) || (!IsInvisible(ac)))
46
47 #define SEE_LUSER(s, ac, b) (IS_VISIBLE_USER(s, ac) || ((b & WHOSELECT_EXTRA) && MyConnect(ac) && HasPriv((s), PRIV_SHOW_INVIS | PRIV_SHOW_ALL_INVIS)))
48
49 #define SEE_USER(s, ac, b) (SEE_LUSER(s, ac, b) || ((b & WHOSELECT_EXTRA) && HasPriv((s), PRIV_SHOW_ALL_INVIS)))
50
51 #define SHOW_MORE(sptr, counter) (HasPriv(sptr, PRIV_UNLIMIT_QUERY) || (!(counter-- < 0)) )
52
53 #define SEE_CHANNEL(s, chptr, b) (!SecretChannel(chptr) || ((b & WHOSELECT_EXTRA) && HasPriv((s), PRIV_SEE_CHAN)))
54
55 #define MAX_WHOIS_LINES 50
56
57 /*
58  * Prototypes
59  */
60 extern void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan,
61                    int fields, char* qrt);
62
63
64 #endif /* INCLUDED_whocmds_h */