1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00

incusd/ports: Cleanup consts

Signed-off-by: Matthew Gibbons <mhgibbons@me.com>
This commit is contained in:
Matthew Gibbons
2025-03-14 17:38:47 -04:00
committed by Stéphane Graber
parent 7af3ea49e5
commit 2a9cd7f916

View File

@@ -1,8 +1,11 @@
package ports
const BGPDefaultPort = 179
const DNSDefaultPort = 53
const HTTPDebugDefaultPort = 8080
const HTTPSDefaultPort = 8443
const HTTPSMetricsDefaultPort = 9100
const HTTPSStorageBucketsDefaultPort = 9000
// Default ports for common services.
const (
BGPDefaultPort = 179
DNSDefaultPort = 53
HTTPDebugDefaultPort = 8080
HTTPSDefaultPort = 8443
HTTPSMetricsDefaultPort = 9100
HTTPSStorageBucketsDefaultPort = 9000
)