build.settings   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 18
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
 sdntrace settings
3
"""
4
5
# Default field used to define color
6
# It will be updated by shared.colors.Colors()
7 1
COLOR_FIELD = "dl_src"
8 1
COLOR_VALUE = "ee:ee:ee:ee:ee:"
9
10
# OpenFlow PacketOut Action OFPP_TABLE for OF1.3
11 1
OFPP_TABLE_13 = 4294967289
12
13
# Number of Parallel Traces allowed
14 1
PARALLEL_TRACES = 10
15
16
# URL for coloring app
17
COLORS_URL = "http://localhost:8181/api/amlight/coloring/colors"
18