diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2017-12-20 16:08:03 +0100 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2017-12-20 16:37:16 +0000 |
commit | 74579f44a7f8e9df1a3715c82b700551cc06e8aa (patch) | |
tree | a208f35ea4be65da6dcda645f9d80b580c39feed /src/plugins/acl/fa_node.c | |
parent | 55d03788290d51c79686218ef5de2be8ff6ce976 (diff) |
acl-plugin: add a debug CLI to print 5-tuple structure in human readable format from hex representation
Even though the trace now prints the hex as well as human readable format for acl plugin,
it can be handy to have a separate function which allows to decode the hex. So add this debug CLI.
Change-Id: I1db133a043374817ea9e94ae3736b8a98630669d
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
Diffstat (limited to 'src/plugins/acl/fa_node.c')
-rw-r--r-- | src/plugins/acl/fa_node.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/acl/fa_node.c b/src/plugins/acl/fa_node.c index 9c3db8d81fd..59eb9dfcb52 100644 --- a/src/plugins/acl/fa_node.c +++ b/src/plugins/acl/fa_node.c @@ -58,6 +58,12 @@ format_fa_5tuple (u8 * s, va_list * args) p5t->pkt.flags_reserved); } +u8 * +format_acl_plugin_5tuple (u8 * s, va_list * args) +{ + return format_fa_5tuple(s, args); +} + /* packet trace format function */ static u8 * format_acl_fa_trace (u8 * s, va_list * args) |