Total Complexity | 0 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | """Module with the Constants used in the amlight/telemetry.""" |
||
2 | |||
3 | 1 | KYTOS_API = "http://0.0.0.0:8181/api" |
|
4 | 1 | mef_eline_api = f"{KYTOS_API}/kytos/mef_eline/v2" |
|
5 | 1 | flow_manager_api = f"{KYTOS_API}/kytos/flow_manager/v2" |
|
6 | 1 | COOKIE_PREFIX = 0xA8 |
|
7 | 1 | MEF_COOKIE_PREFIX = 0xAA |
|
8 | 1 | INT_TABLE = 2 |
|
9 | 1 | IPv4 = 2048 |
|
10 | 1 | TCP = 6 |
|
11 | UDP = 17 |
||
12 |