Searched refs:new_opt (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/contrib/ipfilter/tools/
H A Dipmon_y.y40 static opt_t *new_opt __P((int));
155 IPM_DIRECTION '=' IPM_IN { $$ = new_opt(IPM_DIRECTION);
157 | IPM_DIRECTION '=' IPM_OUT { $$ = new_opt(IPM_DIRECTION);
161 dstip: IPM_DSTIP '=' ipv4 '/' YY_NUMBER { $$ = new_opt(IPM_DSTIP);
167 IPM_DSTPORT '=' YY_NUMBER { $$ = new_opt(IPM_DSTPORT);
169 | IPM_DSTPORT '=' YY_STR { $$ = new_opt(IPM_DSTPORT);
173 every: IPM_EVERY IPM_SECOND { $$ = new_opt(IPM_SECOND);
175 | IPM_EVERY YY_NUMBER IPM_SECONDS { $$ = new_opt(IPM_SECOND);
177 | IPM_EVERY IPM_PACKET { $$ = new_opt(IPM_PACKET);
179 | IPM_EVERY YY_NUMBER IPM_PACKETS { $$ = new_opt(IPM_PACKE
[all...]

Completed in 123 milliseconds