Skip to content
Snippets Groups Projects
Commit 1159a9b0 authored by Martin Stiemerling's avatar Martin Stiemerling :speech_balloon:
Browse files

works now for self-testing.

parent 10a2cfe7
No related branches found
No related tags found
1 merge request!4Fixes to docker-compose
...@@ -22,19 +22,19 @@ func main() { ...@@ -22,19 +22,19 @@ func main() {
// quantumlayer so generated keys can be fetched. This is mainly to simplify // quantumlayer so generated keys can be fetched. This is mainly to simplify
// the initial setup process. // the initial setup process.
flag.BoolVar(&selfTesting, "selfTesting", false, flag.BoolVar(&selfTesting, "selfTesting", true,
"Will perform self-testing with second quantum link if set to true") "Will perform self-testing with second quantum link if set to true")
flag.StringVar(&udpQL1AddrString, "address", "[::1]:50900", flag.StringVar(&udpQL1AddrString, "my-address", "[::1]:50900",
"The UDP address for my quantumlayer so keys can be fetched") "The UDP address for my quantumlayer so keys can be fetched")
flag.StringVar(&ql1Name, "name", "ekms-ql1", flag.StringVar(&ql1Name, "my-name", "ekms-ql1",
"The name of the quantumlayer") "The name of the quantumlayer")
flag.StringVar(&udpQL2AddrString, "address", "[::1]:50901", flag.StringVar(&udpQL2AddrString, "remote-address", "[::1]:50901",
"The UDP address to a second quantumlayer so keys can be fetched") "The UDP address to a second quantumlayer so keys can be fetched")
flag.StringVar(&ql2Name, "name", "ekms-ql2", flag.StringVar(&ql2Name, "remote-name", "ekms-ql2",
"The name of the quantumlayer") "The name of the quantumlayer")
// Parse the provided flags // Parse the provided flags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment