ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_xline.c
(Generate patch)

Comparing ircd-hybrid/trunk/modules/m_xline.c (file contents):
Revision 5875 by michael, Wed Apr 29 11:09:28 2015 UTC vs.
Revision 5881 by michael, Sun May 3 16:04:15 2015 UTC

# Line 276 | Line 276 | me_xline(struct Client *source_p, int pa
276  
277   static struct Message xline_msgtab =
278   {
279 <  "XLINE", NULL, 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
280 <  { m_unregistered, m_not_oper, ms_xline, me_xline, mo_xline, m_ignore }
279 >  .cmd = "XLINE",
280 >  .args_min = 2,
281 >  .args_max = MAXPARA,
282 >  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
283 >  .handlers[CLIENT_HANDLER] = m_not_oper,
284 >  .handlers[SERVER_HANDLER] = ms_xline,
285 >  .handlers[ENCAP_HANDLER] = me_xline,
286 >  .handlers[OPER_HANDLER] = mo_xline
287   };
288  
289   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)