Lines Matching full:jump
71 * E.g. "-I bw_INPUT -i rmnet0 --jump costly"
80 * iptables -I bw_INPUT -i iface0 --jump bw_costly_shared
81 * iptables -I bw_OUTPUT -o iface0 --jump bw_costly_shared
83 * --jump REJECT --reject-with icmp-net-prohibited
84 * iptables -A bw_costly_shared --jump bw_penalty_box
86 * iptables -A bw_penalty_box --jump bw_happy_box
89 * iptables -I bw_INPUT -i iface1 --jump bw_costly_shared
90 * iptables -I bw_OUTPUT -o iface1 --jump bw_costly_shared
95 * iptables -I bw_INPUT -i iface0 --jump bw_costly_iface0
96 * iptables -I bw_OUTPUT -o iface0 --jump bw_costly_iface0
98 * --jump REJECT --reject-with icmp-port-unreachable
99 * iptables -A bw_costly_iface0 --jump bw_penalty_box
105 * --jump REJECT --reject-with icmp-port-unreachable
111 * --jump RETURN
148 "-A bw_costly_shared --jump bw_penalty_box",
193 fullCmd += " --jump REJECT";
196 fullCmd += " --jump RETURN";
499 // The requried IP version specific --jump REJECT ... will be added later.
547 snprintf(cmd, sizeof(cmd), "-D bw_INPUT -i %s --jump %s", ifn, costCString);
550 snprintf(cmd, sizeof(cmd), "-I bw_INPUT %d -i %s --jump %s", ruleInsertPos, ifn, costCString);
553 snprintf(cmd, sizeof(cmd), "-D bw_OUTPUT -o %s --jump %s", ifn, costCString);
556 snprintf(cmd, sizeof(cmd), "-I bw_OUTPUT %d -o %s --jump %s", ruleInsertPos, ifn, costCString);
581 snprintf(cmd, sizeof(cmd), "-D bw_INPUT -i %s --jump %s", ifn, costCString);
583 snprintf(cmd, sizeof(cmd), "-D bw_OUTPUT -o %s --jump %s", ifn, costCString);