| 160 | } |
| 161 | |
| 162 | time_t SecondsSinceEpochToTimeT(uint64_t secondsSinceEpoch) |
| 163 | { |
| 164 | std::chrono::time_point<std::chrono::system_clock> const tpoint{std::chrono::seconds(secondsSinceEpoch)}; |
| 165 | return std::chrono::system_clock::to_time_t(tpoint); |
| 166 | } |
| 167 | |
| 168 | uint64_t TimeTToSecondsSinceEpoch(time_t time) |
| 169 | { |
no outgoing calls