Example #1
0
static ActionSkBuff
filter_dst_port(arguments_t args, SkBuff b)
{
	const u16 port = GET_ARG(u16, args);
        return has_dst_port(b, port) ? Pass(b) : Drop(b);
}
Example #2
0
static bool
pred_has_dst_port(arguments_t args, SkBuff b)
{
	const u16 port = GET_ARG(u16, args);
	return has_dst_port(b, port);
}