Lines Matching defs:olh
1079 ipfw_obj_lheader *olh;
1085 sz = sizeof(*olh) + 16 * sizeof(struct nat44_cfg_nat);
1088 if ((olh = calloc(1, sz)) == NULL)
1091 olh->size = sz;
1092 if (do_get3(IP_FW_NAT44_LIST_NAT, &olh->opheader, &sz) != 0) {
1093 sz = olh->size;
1094 free(olh);
1101 qsort(olh + 1, olh->count, olh->objsize, natname_cmp);
1103 cfg = (struct nat44_cfg_nat*)(olh + 1);
1104 for (i = 0; i < olh->count; i++) {
1107 olh->objsize);
1110 free(olh);