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

Comparing ircd-hybrid/trunk/src/conf_parser.y (file contents):
Revision 7668 by michael, Wed Jul 20 17:09:49 2016 UTC vs.
Revision 7766 by michael, Fri Oct 7 16:27:37 2016 UTC

# Line 227 | Line 227 | reset_block_state(void)
227   %token  MAX_CHANNELS
228   %token  MAX_GLOBAL
229   %token  MAX_IDLE
230 + %token  MAX_INVITES
231   %token  MAX_LOCAL
232   %token  MAX_NICK_CHANGES
233   %token  MAX_NICK_LENGTH
# Line 2887 | Line 2888 | channel_item:       channel_max_bans |
2888                      channel_knock_client_time |
2889                      channel_knock_delay_channel |
2890                      channel_max_channels |
2891 +                    channel_max_invites |
2892                      channel_default_join_flood_count |
2893                      channel_default_join_flood_time |
2894                      channel_disable_fake_channels |
# Line 2932 | Line 2934 | channel_max_channels: MAX_CHANNELS '=' N
2934    ConfigChannel.max_channels = $3;
2935   };
2936  
2937 + channel_max_invites: MAX_INVITES '=' NUMBER ';'
2938 + {
2939 +  ConfigChannel.max_invites = $3;
2940 + };
2941 +
2942   channel_max_bans: MAX_BANS '=' NUMBER ';'
2943   {
2944    ConfigChannel.max_bans = $3;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines