Documentation ¶
Index ¶
- func ConvertMap2String(meta map[string]string) string
- func ConvertMeta2Map(meta string) map[string]string
- func CopyMeta(src, dst map[string]string)
- func ExternalIPV4() (string, error)
- func ExternalIPV6() (string, error)
- func GetFreePort() (port int, err error)
- func ParseRpcxAddress(addr string) (network string, ip string, port int, err error)
- func SliceByteToString(b []byte) string
- func StringToSliceByte(s string) []byte
- func Unzip(data []byte) ([]byte, error)
- func Zip(data []byte) ([]byte, error)
- type LimitedPool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConvertMap2String ¶ added in v1.6.2
func ConvertMeta2Map ¶ added in v1.6.2
func ExternalIPV4 ¶ added in v1.6.2
ExternalIPV4 gets external IPv4 address of this server.
func ExternalIPV6 ¶ added in v1.6.2
ExternalIPV6 gets external IPv6 address of this server.
func GetFreePort ¶ added in v1.3.1
GetFreePort gets a free port.
func ParseRpcxAddress ¶ added in v1.6.2
ParseRpcxAddress parses rpcx address such as tcp@127.0.0.1:8972 quic@192.168.1.1:9981
func SliceByteToString ¶
func StringToSliceByte ¶
Types ¶
type LimitedPool ¶ added in v1.6.2
type LimitedPool struct {
// contains filtered or unexported fields
}
func NewLimitedPool ¶ added in v1.6.2
func NewLimitedPool(minSize, maxSize int) *LimitedPool
func (*LimitedPool) Get ¶ added in v1.6.2
func (p *LimitedPool) Get(size int) *[]byte
func (*LimitedPool) Put ¶ added in v1.6.2
func (p *LimitedPool) Put(b *[]byte)
Click to show internal directories.
Click to hide internal directories.