MCPcopy Create free account
hub / github.com/F-Stack/f-stack / print_altq_cmd

Function print_altq_cmd

tools/ipfw/altq.c:142–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140}
141
142void
143print_altq_cmd(struct buf_pr *bp, const ipfw_insn_altq *altqptr)
144{
145 if (altqptr) {
146 const char *qname;
147
148 qname = altq_qid_to_name(altqptr->qid);
149 if (qname == NULL)
150 bprintf(bp, " altq ?<%u>", altqptr->qid);
151 else
152 bprintf(bp, " altq %s", qname);
153 }
154}

Callers 1

print_action_instructionFunction · 0.85

Calls 2

altq_qid_to_nameFunction · 0.85
bprintfFunction · 0.85

Tested by

no test coverage detected