Author: Bleep <helveytw@home.com>
[ircu2.10.12-pk.git] / ircd / client.c
1 /*
2  * IRC - Internet Relay Chat, ircd/client.c
3  * Copyright (C) 1990 Darren Reed
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 1, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id$
20  */
21 #include "client.h"
22 #include "class.h"
23 #include "ircd.h"
24 #include "ircd_reply.h"
25 #include "list.h"
26 #include "numeric.h"
27 #include "s_conf.h"
28 #include "s_debug.h"
29 #include "send.h"
30 #include "struct.h"
31
32 #include <assert.h>
33
34 #define BAD_PING                ((unsigned int)-2)
35
36 /*
37  * client_get_ping
38  * returns shortest ping time in attached server or client conf
39  * classes or PINGFREQUENCY
40  */
41 int client_get_ping(const struct Client* acptr)
42 {
43   int     ping = 0;
44   struct ConfItem* aconf;
45   struct SLink*    link;
46
47   for (link = acptr->confs; link; link = link->next) {
48     aconf = link->value.aconf;
49     if (aconf->status & (CONF_CLIENT | CONF_SERVER)) {
50       int tmp = get_conf_ping(aconf);
51       if (0 < tmp && (ping > tmp || !ping))
52         ping = tmp;
53     }
54   }
55   if (0 == ping)
56     ping = PINGFREQUENCY;
57
58   Debug((DEBUG_DEBUG, "Client %s Ping %d", acptr->name, ping));
59   return ping;
60 }
61
62 #if 0
63 #define BAD_CONF_CLASS          ((unsigned int)-1)
64 #define BAD_CLIENT_CLASS        ((unsigned int)-3)
65
66 unsigned int get_client_class(struct Client* acptr)
67 {
68   struct SLink *tmp;
69   struct ConnectionClass *cl;
70   unsigned int retc = BAD_CLIENT_CLASS;
71
72   if (acptr && !IsMe(acptr) && (acptr->confs))
73     for (tmp = acptr->confs; tmp; tmp = tmp->next)
74     {
75       if (!tmp->value.aconf || !(cl = tmp->value.aconf->confClass))
76         continue;
77       if (ConClass(cl) > retc || retc == BAD_CLIENT_CLASS)
78         retc = ConClass(cl);
79     }
80
81   Debug((DEBUG_DEBUG, "Returning Class %d For %s", retc, acptr->name));
82
83   return (retc);
84 }
85
86 unsigned int get_sendq(struct Client *cptr)
87 {
88   assert(0 != cptr);
89   assert(0 != cptr->local);
90
91   if (cptr->max_sendq)
92     return cptr->max_sendq;
93
94   else if (cptr->confs) {
95     struct SLink*     tmp;
96     struct ConnectionClass* cl;
97
98     for (tmp = cptr->confs; tmp; tmp = tmp->next) {
99       if (!tmp->value.aconf || !(cl = tmp->value.aconf->confClass))
100         continue;
101       if (ConClass(cl) != BAD_CLIENT_CLASS) {
102         cptr->max_sendq = MaxSendq(cl);
103         return cptr->max_sendq;
104       }
105     }
106   }
107   return DEFAULTMAXSENDQLENGTH;
108 }
109 #endif