| 300 | } |
| 301 | |
| 302 | static const struct tlv_field *unknown_field(const struct tlv_field *field, |
| 303 | const struct tlv_field *end) |
| 304 | { |
| 305 | while (field < end) { |
| 306 | if (!field->meta) |
| 307 | return field; |
| 308 | field++; |
| 309 | } |
| 310 | return NULL; |
| 311 | } |
| 312 | |
| 313 | static const struct tlv_field *next_unknown_field(const struct tlv_field *field, |
| 314 | const struct tlv_field *end) |
no outgoing calls
no test coverage detected