代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package integration
import (
"fmt"
"os"
"github.com/onsi/ginkgo"
)
// TestPortRange represents a port range
type TestPortRange int
const (
basePort = 20000
portsPerNode = 50
portsPerSuite = 10 * portsPerNode
)
const (
ConfigBasePort TestPortRange = basePort + portsPerSuite*iota
DiscoveryBasePort
E2EBasePort
GossipBasePort
IdemixBasePort
LedgerPort
LifecyclePort
MSPPort
NWOBasePort
PluggableBasePort
PrivateDataBasePort
RaftBasePort
SBEBasePort
)
// On linux, the default ephemeral port range is 32768-60999 and can be
// allocated by the system for the client side of TCP connections or when
// programs explicitly request one. Given linux is our default CI system,
// we want to try avoid ports in that range.
func (t TestPortRange) StartPortForNode() int {
const startEphemeral, endEphemeral = 32768, 60999
port := int(t) + portsPerNode*(ginkgo.GinkgoParallelNode()-1)
if port >= startEphemeral-portsPerNode && port <= endEphemeral-portsPerNode {
fmt.Fprintf(os.Stderr, "WARNING: port %d is part of the default ephemeral port range on linux", port)
}
return port
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。