ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_tburst.c
Revision: 1592
Committed: Sat Oct 27 21:02:32 2012 UTC (11 years, 5 months ago) by michael
Content type: text/x-csrc
File size: 4593 byte(s)
Log Message:
- Second time's the charm? Moving svnroot/ircd-hybrid-8 to
  svnroot/ircd-hybrid/trunk

File Contents

# Content
1 /* modules/m_tburst.c
2 * Copyright (C) 2002, 2003, 2004, 2005 Hybrid Development Team
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * 1.Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2.Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3.The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
20 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
24 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
25 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $Id$
29 */
30
31 #include "stdinc.h"
32 #include "client.h"
33 #include "ircd.h"
34 #include "send.h"
35 #include "modules.h"
36 #include "hash.h"
37 #include "s_serv.h"
38 #include "conf.h"
39 #include "parse.h"
40
41
42 /* ms_tburst()
43 *
44 * parv[0] = sender prefix
45 * parv[1] = channel timestamp
46 * parv[2] = channel
47 * parv[3] = topic timestamp
48 * parv[4] = topic setter
49 * parv[5] = topic
50 */
51 static void
52 ms_tburst(struct Client *client_p, struct Client *source_p,
53 int parc, char *parv[])
54 {
55 struct Channel *chptr = NULL;
56 int accept_remote = 0;
57 time_t remote_channel_ts = atol(parv[1]);
58 time_t remote_topic_ts = atol(parv[3]);
59 const char *topic = parv[5];
60 const char *setby = parv[4];
61
62 /*
63 * Do NOT test parv[5] for an empty string and return if true!
64 * parv[5] CAN be an empty string, i.e. if the other side wants
65 * to unset our topic. Don't forget: an empty topic is also a
66 * valid topic.
67 */
68
69
70 if ((chptr = hash_find_channel(parv[2])) == NULL)
71 return;
72
73 /*
74 * The logic for accepting and rejecting channel topics was
75 * always a bit hairy, so now we got exactly 2 cases where
76 * we would accept a bursted topic
77 *
78 * Case 1:
79 * The TS of the remote channel is older than ours
80 * Case 2:
81 * The TS of the remote channel is equal to ours AND
82 * the TS of the remote topic is newer than ours
83 */
84 if (HasFlag(source_p, FLAGS_SERVICE))
85 accept_remote = 1;
86 else if (remote_channel_ts < chptr->channelts)
87 accept_remote = 1;
88 else if (remote_channel_ts == chptr->channelts)
89 if (remote_topic_ts > chptr->topic_time)
90 accept_remote = 1;
91
92 if (accept_remote)
93 {
94 int topic_differs = strncmp(chptr->topic, topic, sizeof(chptr->topic) - 1);
95
96 set_channel_topic(chptr, topic, setby, remote_topic_ts);
97
98 if (topic_differs)
99 sendto_channel_local(ALL_MEMBERS, 0, chptr, ":%s TOPIC %s :%s",
100 ConfigServerHide.hide_servers ? me.name : source_p->name,
101 chptr->chname, chptr->topic);
102 }
103
104 /*
105 * Always propagate what we have received, not only if we accept the topic.
106 * This will keep other servers in sync.
107 */
108 sendto_server(source_p, CAP_TBURST|CAP_TS6, NOCAPS,
109 ":%s TBURST %s %s %s %s :%s",
110 ID(source_p), parv[1], parv[2], parv[3], setby, topic);
111 sendto_server(source_p, CAP_TBURST, CAP_TS6,
112 ":%s TBURST %s %s %s %s :%s",
113 source_p->name, parv[1], parv[2], parv[3], setby, topic);
114 }
115
116 static struct Message tburst_msgtab = {
117 "TBURST", 0, 0, 6, MAXPARA, MFLG_SLOW, 0,
118 { m_ignore, m_ignore, ms_tburst, m_ignore, m_ignore, m_ignore }
119 };
120
121 static void
122 module_init(void)
123 {
124 mod_add_cmd(&tburst_msgtab);
125 add_capability("TBURST", CAP_TBURST, 1);
126 }
127
128 static void
129 module_exit(void)
130 {
131 mod_del_cmd(&tburst_msgtab);
132 delete_capability("TBURST");
133 }
134
135 struct module module_entry = {
136 .node = { NULL, NULL, NULL },
137 .name = NULL,
138 .version = "$Revision$",
139 .handle = NULL,
140 .modinit = module_init,
141 .modexit = module_exit,
142 .flags = 0
143 };

Properties

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