summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <35781042+pbuetow@users.noreply.github.com>2023-06-22 21:27:14 +0300
committerGitHub <noreply@github.com>2023-06-22 21:27:14 +0300
commit14654b432c0a5494001af330c9d4cb7efaa535bf (patch)
treee782b38060766ac89d9dd24da143b9088a3f6909 /internal/config
parent294a4239831c2b2bda5933dde8a2ededf7eb476e (diff)
parent16b2ea0f93ebe8fbb8f3dea05d3fa60456513938 (diff)
Merge pull request #33 from snonux/master
Release v4.2.0
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/server.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/config/server.go b/internal/config/server.go
index 4c96567..cb9ca2b 100644
--- a/internal/config/server.go
+++ b/internal/config/server.go
@@ -61,6 +61,12 @@ type ServerConfig struct {
Schedule []Scheduled `json:",omitempty"`
// Continuous mapreduce jobs
Continuous []Continuous `json:",omitempty"`
+ // The allowed key exchanges algorithms.
+ KeyExchanges []string `json:",omitempty"`
+ // The allowed cipher algorithms.
+ Ciphers []string `json:",omitempty"`
+ // The allowed MAC algorithms.
+ MACs []string `json:",omitempty"`
}
// Create a new default server configuration.