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)