2 # SPDX-License-Identifier: GPL-2.0
3 tdc_config.py - tdc user-specified values
5 Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
8 # Dictionary containing all values that can be substituted in executable
11 # Substitute your own tc path here
13 # Substitute your own ip path here
15 # Name of veth devices to be created for the namespace
21 'BATCH_FILE': './batch.txt',
23 # Length of time in seconds to wait before terminating a command
25 # Name of the namespace to use
27 # Directory containing eBPF test programs
34 # put customizations in tdc_config_local.py
36 from tdc_config_local
import *
37 except ImportError as ie
:
41 NAMES
.update(EXTRA_NAMES
)
42 except NameError as ne
: