Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
client
Commits
c1d3a701
Commit
c1d3a701
authored
4 years ago
by
Josh Brooks
Browse files
Options
Downloads
Patches
Plain Diff
Update CLI
parent
11bbfc19
No related branches found
No related tags found
1 merge request
!23
Release
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+3
-2
3 additions, 2 deletions
README.md
cmd/root.go
+1
-1
1 addition, 1 deletion
cmd/root.go
with
4 additions
and
3 deletions
README.md
+
3
−
2
View file @
c1d3a701
...
...
@@ -160,8 +160,6 @@ Flags:
base64 representations) (default "0")
--forceHistoricalRounds Force all rounds to be sent to historical
round retrieval
--fastPolling bool Enables polling for filtered network updates.
Defaults to true if not set
-h, --help help for client
-l, --log string Path to the log output path (- is stdout)
(default "-")
...
...
@@ -178,6 +176,9 @@ Flags:
(default 500)
--sendid uint Use precanned user id (must be between 1 and
40, inclusive)
--slowPolling bool Enables polling for all network updates and RSA signed rounds.
Defaults to true (filtered updates with ECC signed rounds) if not set
-s, --session string Sets the initial directory for client storage
--unsafe Send raw, unsafe messages without e2e
encryption.
...
...
This diff is collapsed.
Click to expand it.
cmd/root.go
+
1
−
1
View file @
c1d3a701
...
...
@@ -347,7 +347,7 @@ func createClient() *api.Client {
netParams
.
E2EParams
.
NumRekeys
=
uint16
(
viper
.
GetUint
(
"e2eNumReKeys"
))
netParams
.
ForceHistoricalRounds
=
viper
.
GetBool
(
"forceHistoricalRounds"
)
netParams
.
FastPolling
=
viper
.
GetBool
(
"
fast
Polling"
)
netParams
.
FastPolling
=
!
viper
.
GetBool
(
"
slow
Polling"
)
client
,
err
:=
api
.
OpenClient
(
storeDir
,
[]
byte
(
pass
),
netParams
)
if
err
!=
nil
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment