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 4413 by michael, Sat Aug 2 16:53:48 2014 UTC vs.
Revision 4414 by michael, Thu Aug 7 14:06:08 2014 UTC

# Line 743 | Line 743 | serverinfo_vhost: VHOST '=' QSTRING ';'
743  
744   serverinfo_vhost6: VHOST6 '=' QSTRING ';'
745   {
746 #ifdef IPV6
746    if (conf_parser_ctx.pass == 2 && *yylval.string != '*')
747    {
748      struct addrinfo hints, *res;
# Line 768 | Line 767 | serverinfo_vhost6: VHOST6 '=' QSTRING ';
767        ConfigServerInfo.specific_ipv6_vhost = 1;
768      }
769    }
771 #endif
770   };
771  
772   serverinfo_max_clients: T_MAX_CLIENTS '=' NUMBER ';'
# Line 2229 | Line 2227 | connect_aftype: AFTYPE '=' T_IPV4 ';'
2227      block_state.aftype.value = AF_INET;
2228   } | AFTYPE '=' T_IPV6 ';'
2229   {
2232 #ifdef IPV6
2230    if (conf_parser_ctx.pass == 2)
2231      block_state.aftype.value = AF_INET6;
2235 #endif
2232   };
2233  
2234   connect_flags: IRCD_FLAGS

Diff Legend

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