Skip to content

Commit

Permalink
participant: change default IP address
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Feb 2, 2024
1 parent fe4b81a commit ab60954
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions participant/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ pub struct Args {
#[arg(short = 'k', long, default_value = "key-package-1.json")]
pub key_package: String,

/// IP to bind to, if using online comms
#[arg(short, long, default_value = "0.0.0.0")]
/// IP to connect to, if using online comms
#[arg(short, long, default_value = "127.0.0.1")]
pub ip: String,

/// Port to bind to, if using online comms
/// Port to connect to, if using online comms
#[arg(short, long, default_value_t = 2744)]
pub port: u16,
}

0 comments on commit ab60954

Please sign in to comment.