* Provide kernel with sorted list of referenced objects */
| 5223 | * Provide kernel with sorted list of referenced objects |
| 5224 | */ |
| 5225 | static void |
| 5226 | object_sort_ctlv(ipfw_obj_ctlv *ctlv) |
| 5227 | { |
| 5228 | |
| 5229 | qsort(ctlv + 1, ctlv->count, ctlv->objsize, compare_ntlv); |
| 5230 | } |
| 5231 | |
| 5232 | struct object_kt { |
| 5233 | uint16_t uidx; |
no test coverage detected