mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-09 00:11:28 +02:00
13 lines
488 B
Go
13 lines
488 B
Go
// Package vnc holds the listen ports of the NetBird embedded VNC stack so
|
|
// consumers can refer to them without depending on internal engine packages.
|
|
package vnc
|
|
|
|
// External and internal listen ports for the embedded VNC server.
|
|
// ExternalPort is what dashboard / browser clients see; the daemon
|
|
// DNATs it to InternalPort, where the in-process VNC server actually
|
|
// listens. Both flow over the NetBird interface.
|
|
const (
|
|
ExternalPort uint16 = 5900
|
|
InternalPort uint16 = 25900
|
|
)
|