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

Comparing ircd-hybrid/branches/8.2.x/modules/core/m_join.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 438 | Line 438 | remove_a_mode(struct Channel *chptr, str
438  
439   static struct Message join_msgtab =
440   {
441 <  "JOIN", NULL, 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
442 <  { m_unregistered, m_join, ms_join, m_ignore, m_join, m_ignore }
441 >  .cmd = "JOIN",
442 >  .args_min = 2,
443 >  .args_max = MAXPARA,
444 >  .handlers[UNREGISTERED_HANDLER] = m_unregistered,
445 >  .handlers[CLIENT_HANDLER] = m_join,
446 >  .handlers[SERVER_HANDLER] = ms_join,
447 >  .handlers[ENCAP_HANDLER] = m_ignore,
448 >  .handlers[OPER_HANDLER] = m_join
449   };
450  
451   static void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines