diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2019-07-12 12:16:16 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-07-12 16:26:08 +0000 |
commit | a0abbff4849e8b8721b70769ae1f3ef27dd6733c (patch) | |
tree | fcd95b5b37d975db652ace3f8f7a4e18d3f0f2a9 /src/plugins/sctp | |
parent | fe67afdd9386f09e07abfa2c1ba278f8bc549c32 (diff) |
session: add thread index to all formatters
Add a thread_index argument to half-open and listener session formatters
because QUIC can have listeners and half-open sessions in any thread.
Change-Id: I1de60e35ece4c68ba8cfdd6b63f211bc620d687b
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Type: feature
Diffstat (limited to 'src/plugins/sctp')
-rw-r--r-- | src/plugins/sctp/sctp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/sctp/sctp.c b/src/plugins/sctp/sctp.c index 14958e55d60..452b6bf22cc 100644 --- a/src/plugins/sctp/sctp.c +++ b/src/plugins/sctp/sctp.c @@ -713,6 +713,7 @@ u8 * format_sctp_listener_session (u8 * s, va_list * args) { u32 tci = va_arg (*args, u32); + u32 __clib_unused thread_index = va_arg (*args, u32); sctp_connection_t *tc = sctp_listener_get (tci); return format (s, "%U", format_sctp_connection_id, tc); } @@ -931,6 +932,7 @@ u8 * format_sctp_half_open (u8 * s, va_list * args) { u32 tci = va_arg (*args, u32); + u32 __clib_unused thread_index = va_arg (*args, u32); sctp_connection_t *sctp_conn = sctp_half_open_connection_get (tci); return format (s, "%U", format_sctp_connection_id, sctp_conn); } |