ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_rehash.c
Revision: 1618
Committed: Tue Oct 30 21:04:38 2012 UTC (11 years, 4 months ago) by michael
Content type: text/x-csrc
File size: 3867 byte(s)
Log Message:
- Made m_globops() and ms_globops() use sendto_realops_flags()
- Added message-type parameter to sendto_realops_flags() which can be one of
  SEND_NOTICE, SEND_GLOBAL, SEND_LOCOPS
- Forward-port -r1617

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * m_rehash.c: Re-reads the configuration file.
4 *
5 * Copyright (C) 2002 by the past and present ircd coders, and others.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 #include "stdinc.h"
26 #include "client.h"
27 #include "irc_string.h"
28 #include "ircd.h"
29 #include "list.h"
30 #include "numeric.h"
31 #include "irc_res.h"
32 #include "conf.h"
33 #include "log.h"
34 #include "send.h"
35 #include "parse.h"
36 #include "modules.h"
37
38
39 /*
40 * mo_rehash - REHASH message handler
41 *
42 */
43 static void
44 mo_rehash(struct Client *client_p, struct Client *source_p,
45 int parc, char *parv[])
46 {
47 int found = 0;
48
49 if (!HasOFlag(source_p, OPER_FLAG_REHASH))
50 {
51 sendto_one(source_p, form_str(ERR_NOPRIVS),
52 me.name, source_p->name, "rehash");
53 return;
54 }
55
56 if (parc > 1)
57 {
58 if (irccmp(parv[1], "DNS") == 0)
59 {
60 sendto_one(source_p, form_str(RPL_REHASHING), me.name, source_p->name, "DNS");
61 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
62 "%s is rehashing DNS",
63 get_oper_name(source_p));
64 restart_resolver(); /* re-read /etc/resolv.conf AGAIN?
65 and close/re-open res socket */
66 found = 1;
67 }
68 else if (irccmp(parv[1], "FDLIMIT") == 0)
69 {
70 sendto_one(source_p, form_str(RPL_REHASHING), me.name,
71 source_p->name, "FDLIMIT");
72 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
73 "%s is updating FDLIMIT",
74 get_oper_name(source_p));
75 recalc_fdlimit(NULL);
76 found = 1;
77 }
78 else if (irccmp(parv[1], "MOTD") == 0)
79 {
80 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
81 "%s is forcing re-reading of MOTD file",
82 get_oper_name(source_p));
83 read_message_file(&ConfigFileEntry.motd);
84 found = 1;
85 }
86
87 if (found)
88 {
89 ilog(LOG_TYPE_IRCD, "REHASH %s From %s",
90 parv[1], get_client_name(source_p, HIDE_IP));
91 return;
92 }
93 else
94 {
95 sendto_one(source_p, ":%s NOTICE %s :rehash one of :DNS FDLIMIT "
96 "MOTD", me.name, source_p->name);
97 return;
98 }
99 }
100 else
101 {
102 sendto_one(source_p, form_str(RPL_REHASHING),
103 me.name, source_p->name, ConfigFileEntry.configfile);
104 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
105 "%s is rehashing server config file",
106 get_oper_name(source_p));
107 ilog(LOG_TYPE_IRCD, "REHASH From %s[%s]",
108 get_oper_name(source_p), source_p->sockhost);
109 rehash(0);
110 }
111 }
112
113 static struct Message rehash_msgtab = {
114 "REHASH", 0, 0, 0, MAXPARA, MFLG_SLOW, 0,
115 {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_rehash, m_ignore}
116 };
117
118 static void
119 module_init(void)
120 {
121 mod_add_cmd(&rehash_msgtab);
122 }
123
124 static void
125 module_exit(void)
126 {
127 mod_del_cmd(&rehash_msgtab);
128 }
129
130 struct module module_entry = {
131 .node = { NULL, NULL, NULL },
132 .name = NULL,
133 .version = "$Revision$",
134 .handle = NULL,
135 .modinit = module_init,
136 .modexit = module_exit,
137 .flags = 0
138 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision