Deleted Added
full compact
30c30
< * $FreeBSD: stable/10/usr.sbin/ctld/parse.y 274870 2014-11-22 17:50:14Z trasz $
---
> * $FreeBSD: stable/10/usr.sbin/ctld/parse.y 274939 2014-11-24 00:47:04Z mav $
63a64
> %token ISNS_SERVER ISNS_PERIOD ISNS_TIMEOUT
89a91,96
> isns_server
> |
> isns_period
> |
> isns_timeout
> |
125a133,155
> isns_server: ISNS_SERVER STR
> {
> int error;
>
> error = isns_new(conf, $2);
> free($2);
> if (error != 0)
> return (1);
> }
> ;
>
> isns_period: ISNS_PERIOD NUM
> {
> conf->conf_isns_period = $2;
> }
> ;
>
> isns_timeout: ISNS_TIMEOUT NUM
> {
> conf->conf_isns_timeout = $2;
> }
> ;
>