-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patherrors.go
43 lines (41 loc) · 890 Bytes
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package internal
import (
launcherCommon "github.com/luskaner/ageLANServer/launcher-common"
)
const (
ErrInvalidCanTrustCertificate = iota + launcherCommon.ErrLast
ErrInvalidCanBroadcastBattleServer
ErrInvalidServerStart
ErrInvalidServerStop
ErrInvalidServerHost
ErrGameAlreadyRunning
ErrGameLauncherNotFound
ErrGameLauncherStart
ErrAnnouncementPort
ErrListenServerAnnouncements
ErrServerExecutable
ErrServerConnectSecure
ErrServerUnreachable
ErrServerCertMissing
ErrServerCertDirectory
ErrServerCertCreate
ErrServerStart
ErrConfigIpMap
ErrConfigIpMapFind
ErrConfigIpMapAdd
ErrConfigCertAdd
ErrConfigCert
ErrReadCert
ErrTrustCert
ErrMetadataProfilesSetup
ErrAgentStart
ErrInvalidServerArgs
ErrInvalidClientArgs
ErrInvalidSetupCommand
ErrInvalidRevertCommand
ErrSetupCommand
ErrConfigCDNMap
ErrSteamRoot
ErrAnnouncementMulticastGroup
ErrUnsupportedOS
)