diff options
Diffstat (limited to 'src/web_service/web_backend.cpp')
| -rw-r--r-- | src/web_service/web_backend.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/web_service/web_backend.cpp b/src/web_service/web_backend.cpp index a726fb8eb..3a3f44dc2 100644 --- a/src/web_service/web_backend.cpp +++ b/src/web_service/web_backend.cpp | |||
| @@ -13,12 +13,12 @@ | |||
| 13 | 13 | ||
| 14 | namespace WebService { | 14 | namespace WebService { |
| 15 | 15 | ||
| 16 | static constexpr char API_VERSION[]{"1"}; | 16 | constexpr char API_VERSION[]{"1"}; |
| 17 | 17 | ||
| 18 | constexpr int HTTP_PORT = 80; | 18 | constexpr u32 HTTP_PORT = 80; |
| 19 | constexpr int HTTPS_PORT = 443; | 19 | constexpr u32 HTTPS_PORT = 443; |
| 20 | 20 | ||
| 21 | constexpr int TIMEOUT_SECONDS = 30; | 21 | constexpr u32 TIMEOUT_SECONDS = 30; |
| 22 | 22 | ||
| 23 | Client::JWTCache Client::jwt_cache{}; | 23 | Client::JWTCache Client::jwt_cache{}; |
| 24 | 24 | ||