diff --git a/launcher-agent/go.mod b/launcher-agent/go.mod index 1a80260..6ab5888 100644 --- a/launcher-agent/go.mod +++ b/launcher-agent/go.mod @@ -2,4 +2,10 @@ module github.com/luskaner/aoe2DELanServer/agent go 1.22.0 -require golang.org/x/sys v0.22.0 +require ( + github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 + github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3 + golang.org/x/sys v0.22.0 +) + +require github.com/deckarep/golang-set/v2 v2.6.0 // indirect diff --git a/launcher-agent/go.sum b/launcher-agent/go.sum index 96f003d..015354c 100644 --- a/launcher-agent/go.sum +++ b/launcher-agent/go.sum @@ -1,2 +1,8 @@ +github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= +github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 h1:6c1INxj3RzzcDzuQYPYYKQ0+ULdqnqhjgseDbK4wGFU= +github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3/go.mod h1:4YQ/5OtWHcPQL5pJuiGg5A56GyoGkH6LLTShX2zmR/8= +github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3 h1:TN1zO7bRv2c1ECC3sqvepG6tdk34MJ42BViPk/iRYvs= +github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3/go.mod h1:u/PJEKZ+8tBwyYZT1KNRBddDxBxJq9KkuGoPbS5paSo= golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= diff --git a/launcher-config-admin-agent/README.md b/launcher-config-admin-agent/README.md index 0fe3fee..c357869 100644 --- a/launcher-config-admin-agent/README.md +++ b/launcher-config-admin-agent/README.md @@ -7,5 +7,5 @@ Resides in `bin` subdirectory. ## Exit Codes * [Base codes](/common/errors.go). -* [Launcher shared codes](/launcherCommon/errors.go). +* [Launcher shared codes](/launcher-common/errors.go). * [Config Admin codes](internal/errors.go) (some might only be sent through IPC). \ No newline at end of file diff --git a/launcher-config-admin-agent/go.mod b/launcher-config-admin-agent/go.mod index de751c0..13d7b89 100644 --- a/launcher-config-admin-agent/go.mod +++ b/launcher-config-admin-agent/go.mod @@ -3,6 +3,7 @@ module github.com/luskaner/aoe2DELanServer/cfgAdminAgent go 1.22.0 require ( + github.com/Microsoft/go-winio v0.6.2 github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3 golang.org/x/sys v0.22.0 diff --git a/launcher-config-admin-agent/go.sum b/launcher-config-admin-agent/go.sum index 015354c..fee8e15 100644 --- a/launcher-config-admin-agent/go.sum +++ b/launcher-config-admin-agent/go.sum @@ -1,3 +1,5 @@ +github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= +github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= github.com/luskaner/aoe2DELanServer/common v1.2.0-rc.3 h1:6c1INxj3RzzcDzuQYPYYKQ0+ULdqnqhjgseDbK4wGFU= diff --git a/launcher-config-admin-agent/internal/ipc.go b/launcher-config-admin-agent/internal/ipc.go index 1c2aea4..bf40c92 100644 --- a/launcher-config-admin-agent/internal/ipc.go +++ b/launcher-config-admin-agent/internal/ipc.go @@ -4,6 +4,7 @@ import ( "crypto/x509" "encoding/gob" "fmt" + "github.com/Microsoft/go-winio" "github.com/luskaner/aoe2DELanServer/common" launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common" "github.com/luskaner/aoe2DELanServer/launcher-common/executor" diff --git a/launcher-config-admin/README.md b/launcher-config-admin/README.md index eb98d53..9c69966 100644 --- a/launcher-config-admin/README.md +++ b/launcher-config-admin/README.md @@ -16,5 +16,5 @@ CLI is available. You can see the available options with ## Exit Codes * [Base codes](/common/errors.go). -* [Launcher shared codes](/launcherCommon/errors.go). +* [Launcher shared codes](/launcher-common/errors.go). * [Config Admin codes](internal/errors.go). \ No newline at end of file diff --git a/launcher-config/README.md b/launcher-config/README.md index 221df3e..22a3f5b 100644 --- a/launcher-config/README.md +++ b/launcher-config/README.md @@ -20,5 +20,5 @@ You may run `cleanup.bat` to revert all changes (forced). ## Exit Codes * [Base codes](/common/errors.go). -* [Launcher shared codes](/launcherCommon/errors.go). +* [Launcher shared codes](/launcher-common/errors.go). * [Config codes](internal/errors.go). \ No newline at end of file diff --git a/launcher-config/go.mod b/launcher-config/go.mod index 7ea7a0d..39a5c1c 100644 --- a/launcher-config/go.mod +++ b/launcher-config/go.mod @@ -8,6 +8,7 @@ require ( github.com/luskaner/aoe2DELanServer/launcher-common v1.2.0-rc.3 github.com/spf13/cobra v1.8.1 golang.org/x/sys v0.22.0 + github.com/Microsoft/go-winio v0.6.2 ) require ( diff --git a/launcher-config/go.sum b/launcher-config/go.sum index 86edc8d..d5719c1 100644 --- a/launcher-config/go.sum +++ b/launcher-config/go.sum @@ -1,3 +1,5 @@ +github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= +github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= diff --git a/launcher-config/internal/admin.go b/launcher-config/internal/admin.go index e2231ac..38f7c19 100644 --- a/launcher-config/internal/admin.go +++ b/launcher-config/internal/admin.go @@ -3,6 +3,7 @@ package internal import ( "crypto/x509" "encoding/gob" + "github.com/Microsoft/go-winio" mapset "github.com/deckarep/golang-set/v2" "github.com/luskaner/aoe2DELanServer/common" launcherCommon "github.com/luskaner/aoe2DELanServer/launcher-common"