mirror of
https://github.com/PretendoNetwork/nex-go.git
synced 2025-04-02 11:02:14 -04:00
12 lines
337 B
Go
12 lines
337 B
Go
package constants
|
|
|
|
// StationURLFlag is an enum of flags used by the StationURL "type" parameter.
|
|
type StationURLFlag uint8
|
|
|
|
const (
|
|
// StationURLFlagBehindNAT indicates the user is behind NAT
|
|
StationURLFlagBehindNAT StationURLFlag = iota + 1
|
|
|
|
// StationURLFlagPublic indicates the station is a public address
|
|
StationURLFlagPublic
|
|
)
|