diff options
author | 2025-02-12 01:43:45 -0500 | |
---|---|---|
committer | 2025-02-12 17:00:13 +0000 | |
commit | 65034bc7350756f0601590f93897ef6386b29c59 (patch) | |
tree | b0854da87b7c5461193e51b19469bc614b89f90b /src/plugins/unittest/tcp_test.c | |
parent | d36496c298de265c10f5a352b0568f8a12da0480 (diff) |
tcp: rename worker ctx to just wrk
Align with session layer (also less typing in gdb ..)
Type: refactor
Change-Id: I1455a1aa3e3bad7b53fe638a678774b88b9969b9
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/plugins/unittest/tcp_test.c')
-rw-r--r-- | src/plugins/unittest/tcp_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/unittest/tcp_test.c b/src/plugins/unittest/tcp_test.c index bd39474ce93..4b53bc18906 100644 --- a/src/plugins/unittest/tcp_test.c +++ b/src/plugins/unittest/tcp_test.c @@ -1005,7 +1005,7 @@ static void tcp_test_set_time (u32 thread_index, u32 val) { session_main.wrk[thread_index].last_vlib_time = val; - tcp_set_time_now (&tcp_main.wrk_ctx[thread_index], val); + tcp_set_time_now (&tcp_main.wrk[thread_index], val); } static int |