config: Port some docstrings from go-ipfs
This commit is contained in:
parent
17b7dcef6f
commit
3708a7ac30
@ -361,19 +361,23 @@ it makes the local lotus node accessible from the public internet`,
|
||||
Name: "ConnMgrLow",
|
||||
Type: "uint",
|
||||
|
||||
Comment: ``,
|
||||
Comment: `ConnMgrLow is the number of connections that the basic connection manager
|
||||
will trim down to.`,
|
||||
},
|
||||
{
|
||||
Name: "ConnMgrHigh",
|
||||
Type: "uint",
|
||||
|
||||
Comment: ``,
|
||||
Comment: `ConnMgrHigh is the number of connections that, when exceeded, will trigger
|
||||
a connection GC operation. Note: protected/recently formed connections don't
|
||||
count towards this limit.`,
|
||||
},
|
||||
{
|
||||
Name: "ConnMgrGrace",
|
||||
Type: "Duration",
|
||||
|
||||
Comment: ``,
|
||||
Comment: `ConnMgrGrace is a time duration that new connections are immune from being
|
||||
closed by the connection manager.`,
|
||||
},
|
||||
},
|
||||
"MinerAddressConfig": []DocField{
|
||||
|
@ -298,8 +298,15 @@ type Libp2p struct {
|
||||
// it makes the local lotus node accessible from the public internet
|
||||
DisableNatPortMap bool
|
||||
|
||||
ConnMgrLow uint
|
||||
ConnMgrHigh uint
|
||||
// ConnMgrLow is the number of connections that the basic connection manager
|
||||
// will trim down to.
|
||||
ConnMgrLow uint
|
||||
// ConnMgrHigh is the number of connections that, when exceeded, will trigger
|
||||
// a connection GC operation. Note: protected/recently formed connections don't
|
||||
// count towards this limit.
|
||||
ConnMgrHigh uint
|
||||
// ConnMgrGrace is a time duration that new connections are immune from being
|
||||
// closed by the connection manager.
|
||||
ConnMgrGrace Duration
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user