mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
cmd/devp2p: add listen command
This commit is contained in:
parent
37149d02df
commit
1a6a64ba49
1 changed files with 9 additions and 0 deletions
|
|
@ -48,6 +48,7 @@ var (
|
||||||
discv4ResolveJSONCommand,
|
discv4ResolveJSONCommand,
|
||||||
discv4CrawlCommand,
|
discv4CrawlCommand,
|
||||||
discv4TestCommand,
|
discv4TestCommand,
|
||||||
|
discv4ListenCommand,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
discv4PingCommand = &cli.Command{
|
discv4PingCommand = &cli.Command{
|
||||||
|
|
@ -78,6 +79,14 @@ var (
|
||||||
Flags: discoveryNodeFlags,
|
Flags: discoveryNodeFlags,
|
||||||
ArgsUsage: "<nodes.json file>",
|
ArgsUsage: "<nodes.json file>",
|
||||||
}
|
}
|
||||||
|
discv4ListenCommand = &cli.Command{
|
||||||
|
Name: "listen",
|
||||||
|
Usage: "Runs a discovery node",
|
||||||
|
Action: discv4Listen,
|
||||||
|
Flags: flags.Merge(discoveryNodeFlags, []cli.Flag{
|
||||||
|
httpAddrFlag,
|
||||||
|
}),
|
||||||
|
}
|
||||||
discv4CrawlCommand = &cli.Command{
|
discv4CrawlCommand = &cli.Command{
|
||||||
Name: "crawl",
|
Name: "crawl",
|
||||||
Usage: "Updates a nodes.json file with random nodes found in the DHT",
|
Usage: "Updates a nodes.json file with random nodes found in the DHT",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue