build.settings   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 17
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
"""Settings for the of_core NApp.."""
2
#: Pooling frequency
3 1
STATS_INTERVAL = 60
4
5
#: Supported Versions
6 1
OPENFLOW_VERSIONS = [0x01, 0x04]
7
8
#: If SEND_FEATURES_REQUEST_ON_ECHO is True, kytos/of_core must send
9
#: FeaturesRequest when when it sends an echo reply message
10 1
SEND_FEATURES_REQUEST_ON_ECHO = False
11
12
#: Send Echo requests to switches periodically to keep connection
13 1
SEND_ECHO_REQUESTS = True
14
15
#: Send Set Config messages right after the OpenFlow handshake
16
SEND_SET_CONFIG = True
17