Lines Matching defs:OPTSTRING
1286 #define OPTSTRING 60
1289 char tstr[OPTSTRING];
1291 memset(options, 0, OPTSTRING);
1294 append_str(options, "pass,", OPTSTRING);
1296 append_str(options, "redir,", OPTSTRING);
1298 append_str(options, "drop,", OPTSTRING);
1300 snprintf(tstr, OPTSTRING, "apply %d,", txmsg_apply);
1301 append_str(options, tstr, OPTSTRING);
1304 snprintf(tstr, OPTSTRING, "cork %d,", txmsg_cork);
1305 append_str(options, tstr, OPTSTRING);
1308 snprintf(tstr, OPTSTRING, "start %d,", txmsg_start);
1309 append_str(options, tstr, OPTSTRING);
1312 snprintf(tstr, OPTSTRING, "end %d,", txmsg_end);
1313 append_str(options, tstr, OPTSTRING);
1316 snprintf(tstr, OPTSTRING, "pop (%d,%d),",
1318 append_str(options, tstr, OPTSTRING);
1321 append_str(options, "ingress,", OPTSTRING);
1323 append_str(options, "redir_skb,", OPTSTRING);
1325 append_str(options, "ktls_skb,", OPTSTRING);
1327 append_str(options, "ktls,", OPTSTRING);
1329 append_str(options, "peek,", OPTSTRING);
1334 char *options = calloc(OPTSTRING, sizeof(char));