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

Comparing ircd-hybrid/branches/8.2.x/modules/m_wallops.c (file contents):
Revision 5879 by michael, Tue Apr 28 12:23:14 2015 UTC vs.
Revision 5880 by michael, Sun May 3 16:01:42 2015 UTC

# Line 96 | Line 96 | ms_wallops(struct Client *source_p, int
96  
97   static struct Message wallops_msgtab =
98   {
99 <  "WALLOPS", NULL, 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
100 <  { m_unregistered, m_not_oper, ms_wallops, m_ignore, mo_wallops, m_ignore }
99 >  .cmd = "WALLOPS",
100 >  .args_min = 2,
101 >  .args_max = MAXPARA,
102 >  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
103 >  .handlers[CLIENT_HANDLER] = m_not_oper,
104 >  .handlers[SERVER_HANDLER] = ms_wallops,
105 >  .handlers[ENCAP_HANDLER] = m_ignore,
106 >  .handlers[OPER_HANDLER] = mo_wallops
107   };
108  
109   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines