Passed
Pull Request — master (#69)
by Gleyberson
02:03
created

build.settings   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 17
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
wmc 0
1
"""Settings for the of_core NApp.."""
2
#: Pooling frequency
3
STATS_INTERVAL = 60
4
5
#: Supported Versions
6
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
SEND_FEATURES_REQUEST_ON_ECHO = False
11
12
#: Send Echo requests to switches periodically to keep connection
13
SEND_ECHO_REQUESTS = True
14
15
#: Send Set Config messages right after the OpenFlow handshake
16
SEND_SET_CONFIG = True
17