Lines Matching defs:hdridx
31 ** hdridx -- Header index
40 smfi_header(ctx, cmd, hdridx, headerf, headerv)
43 int hdridx;
60 if (hdridx >= 0)
66 if (hdridx >= 0)
68 v = htonl(hdridx);
108 ** hdridx -- index into header list where insertion should occur
117 smfi_insheader(ctx, hdridx, headerf, headerv)
119 int hdridx;
123 if (!mi_sendok(ctx, SMFIF_ADDHDRS) || hdridx < 0)
126 return smfi_header(ctx, SMFIR_INSHEADER, hdridx, headerf, headerv);
135 ** hdridx -- Header index value
143 smfi_chgheader(ctx, headerf, hdridx, headerv)
146 mi_int32 hdridx;
149 if (!mi_sendok(ctx, SMFIF_CHGHDRS) || hdridx < 0)
154 return smfi_header(ctx, SMFIR_CHGHEADER, hdridx, headerf, headerv);