14 lines
289 B
C++
14 lines
289 B
C++
#ifndef COMMON_CONFIG_DEFINITIONS_H_
|
|
#define COMMON_CONFIG_DEFINITIONS_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace config {
|
|
|
|
static constexpr uint32_t PL_PCDU_TRANSITION_TIMEOUT_MS = 20 * 60 * 60 * 1000;
|
|
static constexpr uint32_t LONGEST_MODE_TIMEOUT =
|
|
}
|
|
|
|
|
|
#endif /* COMMON_CONFIG_DEFINITIONS_H_ */
|