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

Function ipv4_addr_show

dpdk/examples/ip_pipeline/cli.c:4692–4700  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4690}
4691
4692static void
4693ipv4_addr_show(FILE *f, uint32_t addr)
4694{
4695 fprintf(f, "%u.%u.%u.%u",
4696 addr >> 24,
4697 (addr >> 16) & 0xFF,
4698 (addr >> 8) & 0xFF,
4699 addr & 0xFF);
4700}
4701
4702static void
4703ipv6_addr_show(FILE *f, uint8_t *addr)

Callers 1

table_rule_showFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected