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-8/src/ircd_parser.y (file contents):
Revision 1248 by michael, Sat Oct 1 10:02:53 2011 UTC vs.
Revision 1264 by michael, Tue Jan 17 12:30:57 2012 UTC

# Line 339 | Line 339 | unhook_hub_leaf_confs(void)
339   %token  T_SSL
340   %token  T_UMODES
341   %token  T_UNAUTH
342 + %token  T_UNLIMITED
343   %token  T_UNRESV
344   %token  T_UNXLINE
345   %token  T_GLOBOPS
# Line 836 | Line 837 | logging_file_name: NAME '=' QSTRING ';'
837   logging_file_size: T_SIZE '=' sizespec ';'
838   {
839    lsize = $3;
840 + } | T_SIZE '=' T_UNLIMITED ';'
841 + {
842 +  lsize = 0;
843   };
844  
845   logging_file_type: TYPE
# Line 2044 | Line 2048 | connect_entry: CONNECT
2048      yy_aconf->passwd = NULL;
2049      /* defaults */
2050      yy_aconf->port = PORTNUM;
2047
2048    if (ConfigFileEntry.burst_away)
2049      yy_aconf->flags = CONF_FLAGS_BURST_AWAY;
2051    }
2052    else
2053    {
# Line 2732 | Line 2733 | general_item:       general_hide_spoof_i
2733                      general_compression_level | general_client_flood |
2734                      general_throttle_time | general_havent_read_conf |
2735                      general_ping_cookie |
2736 <                    general_disable_auth | general_burst_away |
2736 >                    general_disable_auth |
2737                      general_tkline_expire_notices | general_gline_min_cidr |
2738                      general_gline_min_cidr6 | general_use_whois_actually |
2739                      general_reject_hold_time | general_stats_e_disabled |
# Line 2755 | Line 2756 | general_gline_min_cidr6: GLINE_MIN_CIDR6
2756    ConfigFileEntry.gline_min_cidr6 = $3;
2757   };
2758  
2758 general_burst_away: BURST_AWAY '=' TBOOL ';'
2759 {
2760  ConfigFileEntry.burst_away = yylval.number;
2761 };
2762
2759   general_use_whois_actually: USE_WHOIS_ACTUALLY '=' TBOOL ';'
2760   {
2761    ConfigFileEntry.use_whois_actually = yylval.number;

Diff Legend

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