golang.org/x/crypto/ssh.Config.RekeyThreshold (field)
10 uses
golang.org/x/crypto/ssh (current package)
common.go#L222: RekeyThreshold uint64
common.go#L264: if c.RekeyThreshold == 0 {
common.go#L266: } else if c.RekeyThreshold < minRekeyThreshold {
common.go#L267: c.RekeyThreshold = minRekeyThreshold
common.go#L268: } else if c.RekeyThreshold >= math.MaxInt64 {
common.go#L270: c.RekeyThreshold = math.MaxInt64
handshake.go#L250: if t.config.RekeyThreshold > 0 {
handshake.go#L251: t.writeBytesLeft = int64(t.config.RekeyThreshold)
handshake.go#L364: if t.config.RekeyThreshold > 0 {
handshake.go#L365: t.readBytesLeft = int64(t.config.RekeyThreshold)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |