Lines Matching refs:jumpto
511 const char *jumpto = NULL; in nft_parse_immediate() local
536 jumpto = "ACCEPT"; in nft_parse_immediate()
539 jumpto = "DROP"; in nft_parse_immediate()
542 jumpto = "RETURN"; in nft_parse_immediate()
548 jumpto = chain; in nft_parse_immediate()
552 ctx->h->ops->parse_immediate(jumpto, nft_goto, data); in nft_parse_immediate()
681 cs->jumpto = cs->target->name; in nft_rule_to_iptables_command_state()
682 } else if (cs->jumpto != NULL) { in nft_rule_to_iptables_command_state()
686 cs->target = xtables_find_target(cs->jumpto, XTF_TRY_LOAD); in nft_rule_to_iptables_command_state()
694 strcpy(t->u.user.name, cs->jumpto); in nft_rule_to_iptables_command_state()
697 cs->jumpto = ""; in nft_rule_to_iptables_command_state()
878 printf("-j %s", cs->jumpto); in save_matches_and_target()
882 } else if (strlen(cs->jumpto) > 0) { in save_matches_and_target()
883 printf("-%c %s", goto_flag ? 'g' : 'j', cs->jumpto); in save_matches_and_target()