Home | History | Annotate | Download | only in extensions

Lines Matching refs:cb

261 static void time_parse(struct xt_option_call *cb)
263 struct xt_time_info *info = cb->data;
265 xtables_option_parse(cb);
266 switch (cb->entry->id) {
268 info->date_start = time_parse_date(cb->arg, false);
271 info->date_stop = time_parse_date(cb->arg, true);
274 info->daytime_start = time_parse_minutes(cb->arg);
277 info->daytime_stop = time_parse_minutes(cb->arg);
292 info->monthdays_match = time_parse_monthdays(cb->arg);
293 if (cb->invert)
297 info->weekdays_match = time_parse_weekdays(cb->arg);
298 if (cb->invert)
444 static void time_check(struct xt_fcheck_call *cb)
446 const struct xt_time_info *info = (const void *) cb->data;
447 if ((cb->xflags & F_TIME_CONTIGUOUS) &&