1"""
2tdc_config.py - tdc user-specified values
3
4Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
5"""
6
7# Dictionary containing all values that can be substituted in executable
8# commands.
9NAMES = {
10          # Substitute your own tc path here
11          'TC': '/sbin/tc',
12          # Name of veth devices to be created for the namespace
13          'DEV0': 'v0p0',
14          'DEV1': 'v0p1',
15          # Name of the namespace to use
16          'NS': 'tcut'
17        }
18