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

Comparing ircd-hybrid/branches/8.2.x/src/conf_parser.y (file contents):
Revision 6685 by michael, Wed Oct 28 19:56:28 2015 UTC vs.
Revision 6794 by michael, Tue Nov 17 20:51:46 2015 UTC

# Line 212 | Line 212 | reset_block_state(void)
212   %token  INVISIBLE_ON_CONNECT
213   %token  INVITE_CLIENT_COUNT
214   %token  INVITE_CLIENT_TIME
215 + %token  INVITE_DELAY_CHANNEL
216   %token  IP
217   %token  IRCD_AUTH
218   %token  IRCD_FLAGS
# Line 2938 | Line 2939 | channel_items:      channel_items channe
2939   channel_item:       channel_max_bans |
2940                      channel_invite_client_count |
2941                      channel_invite_client_time |
2942 +                    channel_invite_delay_channel |
2943                      channel_knock_client_count |
2944                      channel_knock_client_time |
2945                      channel_knock_delay_channel |
# Line 2962 | Line 2964 | channel_invite_client_time: INVITE_CLIEN
2964    ConfigChannel.invite_client_time = $3;
2965   };
2966  
2967 + channel_invite_delay_channel: INVITE_DELAY_CHANNEL '=' timespec ';'
2968 + {
2969 +  ConfigChannel.invite_delay_channel = $3;
2970 + };
2971 +
2972   channel_knock_client_count: KNOCK_CLIENT_COUNT '=' NUMBER ';'
2973   {
2974    ConfigChannel.knock_client_count = $3;

Diff Legend

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