| 2894 | } |
| 2895 | |
| 2896 | static int |
| 2897 | pf_match_gid(u_int8_t op, gid_t a1, gid_t a2, gid_t g) |
| 2898 | { |
| 2899 | if (g == GID_MAX && op != PF_OP_EQ && op != PF_OP_NE) |
| 2900 | return (0); |
| 2901 | return (pf_match(op, a1, a2, g)); |
| 2902 | } |
| 2903 | |
| 2904 | int |
| 2905 | pf_match_tag(struct mbuf *m, struct pf_krule *r, int *tag, int mtag) |
no test coverage detected