| 72 | int parse_authenticate_header(struct hdr_field *authenticate, |
| 73 | const struct match_auth_hf_desc *md, struct authenticate_body **picked_auth); |
| 74 | static inline int _parse_authenticate_header(struct hdr_field *authenticate) |
| 75 | { |
| 76 | struct authenticate_body *_; |
| 77 | return parse_authenticate_header(authenticate, NULL, &_); |
| 78 | } |
| 79 | |
| 80 | |
| 81 | int parse_qop_value(str val, struct authenticate_body *auth); |
nothing calls this directly
no test coverage detected