diff options
author | Daniel Gollub <dgollub@att.com> | 2019-11-11 15:07:38 +0100 |
---|---|---|
committer | Vyatta Package Maintainers <DL-vyatta-help@att.com> | 2019-11-13 17:08:02 +0000 |
commit | 822c8f60b72cca97fb2c86db37835a60917d1c7e (patch) | |
tree | d5593a4ed1cbb8e9709411679974355a41f0289e /tacplus-daemon/test/ut_utils.c | |
download | tacplusd-danos/1908.tar.gz tacplusd-danos/1908.zip |
DANOS ImportHEADdebian/1.19danos/1908master
Diffstat (limited to 'tacplus-daemon/test/ut_utils.c')
-rw-r--r-- | tacplus-daemon/test/ut_utils.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tacplus-daemon/test/ut_utils.c b/tacplus-daemon/test/ut_utils.c new file mode 100644 index 0000000..107656d --- /dev/null +++ b/tacplus-daemon/test/ut_utils.c @@ -0,0 +1,17 @@ +/* + Copyright (c) 2018-2019 AT&T Intellectual Property. + + SPDX-License-Identifier: GPL-2.0-only +*/ + +#include "ut_utils.h" + +int *_tac_connect_fds = NULL; +int _tac_connect_fds_len = 0; + +struct tac_connect_call *_tac_connect_calls = NULL; +int _tac_connect_call_count = 0; + +struct timespec _cur_time = { 0, 0 }; + +struct timespec _offline_until = { 0, 0 }; |