net

package
v2.5.2+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 9, 2016 License: MIT Imports: 12 Imported by: 0

Documentation

Overview

Package net is a generated protocol buffer package.

It is generated from these files:

v2ray.com/core/common/net/address.proto
v2ray.com/core/common/net/destination.proto
v2ray.com/core/common/net/network.proto
v2ray.com/core/common/net/port.proto

It has these top-level messages:

IPOrDomain
Endpoint
NetworkList
PortRange

Package net contains common network utilities.

Index

Constants

View Source
const (
	AddressFamilyIPv4   = AddressFamily(0)
	AddressFamilyIPv6   = AddressFamily(1)
	AddressFamilyDomain = AddressFamily(2)
)

Variables

View Source
var (
	LocalHostIP = IPAddress([]byte{127, 0, 0, 1})
	AnyIP       = IPAddress([]byte{0, 0, 0, 0})
)
View Source
var (
	// ErrInvalidPortRage indicates an error during port range parsing.
	ErrInvalidPortRange = errors.New("Invalid port range.")
)
View Source
var Network_name = map[int32]string{
	0: "Unknown",
	1: "RawTCP",
	2: "TCP",
	3: "UDP",
	4: "KCP",
	5: "WebSocket",
}
View Source
var Network_value = map[string]int32{
	"Unknown":   0,
	"RawTCP":    1,
	"TCP":       2,
	"UDP":       3,
	"KCP":       4,
	"WebSocket": 5,
}

Functions

This section is empty.

Types

type Address

type Address interface {
	IP() net.IP     // IP of this Address
	Domain() string // Domain of this Address
	Family() AddressFamily

	String() string // String representation of this Address
	Equals(Address) bool
}

Address represents a network address to be communicated with. It may be an IP address or domain address, not both. This interface doesn't resolve IP address for a given domain.

func DomainAddress

func DomainAddress(domain string) Address

DomainAddress creates an Address with given domain.

func IPAddress

func IPAddress(ip []byte) Address

IPAddress creates an Address with given IP.

func ParseAddress added in v1.1.0

func ParseAddress(addr string) Address

ParseAddress parses a string into an Address. The return value will be an IPAddress when the string is in the form of IPv4 or IPv6 address, or a DomainAddress otherwise.

type AddressFamily added in v1.1.0

type AddressFamily int

func (AddressFamily) Either added in v1.24.1

func (this AddressFamily) Either(fs ...AddressFamily) bool

func (AddressFamily) IsDomain added in v1.1.0

func (this AddressFamily) IsDomain() bool

func (AddressFamily) IsIPv4 added in v1.1.0

func (this AddressFamily) IsIPv4() bool

func (AddressFamily) IsIPv6 added in v1.1.0

func (this AddressFamily) IsIPv6() bool

type Destination

type Destination struct {
	Network Network
	Address Address
	Port    Port
}

Destination represents a network destination including address and protocol (tcp / udp).

func DestinationFromAddr added in v1.1.0

func DestinationFromAddr(addr net.Addr) Destination

func TCPDestination

func TCPDestination(address Address, port Port) Destination

TCPDestination creates a TCP destination with given address

func UDPDestination

func UDPDestination(address Address, port Port) Destination

UDPDestination creates a UDP destination with given address

func (Destination) Equals added in v1.9.1

func (this Destination) Equals(another Destination) bool

func (Destination) NetAddr added in v1.1.0

func (this Destination) NetAddr() string

func (Destination) String

func (this Destination) String() string

type Endpoint added in v1.1.0

type Endpoint struct {
	Network Network     `protobuf:"varint,1,opt,name=network,enum=v2ray.core.common.net.Network" json:"network,omitempty"`
	Address *IPOrDomain `protobuf:"bytes,2,opt,name=address" json:"address,omitempty"`
	Port    uint32      `protobuf:"varint,3,opt,name=port" json:"port,omitempty"`
}

func (*Endpoint) AsDestination added in v1.1.0

func (this *Endpoint) AsDestination() Destination

func (*Endpoint) Descriptor added in v1.1.0

func (*Endpoint) Descriptor() ([]byte, []int)

func (*Endpoint) GetAddress added in v1.1.0

func (m *Endpoint) GetAddress() *IPOrDomain

func (*Endpoint) ProtoMessage added in v1.1.0

func (*Endpoint) ProtoMessage()

func (*Endpoint) Reset added in v1.1.0

func (m *Endpoint) Reset()

func (*Endpoint) String added in v1.1.0

func (m *Endpoint) String() string

type IPNet added in v1.1.0

type IPNet struct {
	// contains filtered or unexported fields
}

func NewIPNet added in v1.1.2

func NewIPNet() *IPNet

func (*IPNet) Add added in v1.1.2

func (this *IPNet) Add(ipNet *net.IPNet)

func (*IPNet) AddIP

func (this *IPNet) AddIP(ip []byte, mask byte)

func (*IPNet) Contains added in v1.1.2

func (this *IPNet) Contains(ip net.IP) bool

func (*IPNet) IsEmpty

func (this *IPNet) IsEmpty() bool

type IPOrDomain added in v1.1.0

type IPOrDomain struct {
	// Types that are valid to be assigned to Address:
	//	*IPOrDomain_Ip
	//	*IPOrDomain_Domain
	Address isIPOrDomain_Address `protobuf_oneof:"address"`
}

func (*IPOrDomain) AsAddress added in v1.1.0

func (this *IPOrDomain) AsAddress() Address

func (*IPOrDomain) Descriptor added in v1.1.0

func (*IPOrDomain) Descriptor() ([]byte, []int)

func (*IPOrDomain) GetAddress added in v1.1.0

func (m *IPOrDomain) GetAddress() isIPOrDomain_Address

func (*IPOrDomain) GetDomain added in v1.1.0

func (m *IPOrDomain) GetDomain() string

func (*IPOrDomain) GetIp added in v1.1.0

func (m *IPOrDomain) GetIp() []byte

func (*IPOrDomain) ProtoMessage added in v1.1.0

func (*IPOrDomain) ProtoMessage()

func (*IPOrDomain) Reset added in v1.1.0

func (m *IPOrDomain) Reset()

func (*IPOrDomain) String added in v1.1.0

func (m *IPOrDomain) String() string

func (*IPOrDomain) XXX_OneofFuncs

func (*IPOrDomain) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

type IPOrDomain_Domain added in v1.1.0

type IPOrDomain_Domain struct {
	Domain string `protobuf:"bytes,2,opt,name=domain,oneof"`
}

type IPOrDomain_Ip added in v1.1.0

type IPOrDomain_Ip struct {
	Ip []byte `protobuf:"bytes,1,opt,name=ip,proto3,oneof"`
}

type Network added in v0.14.1

type Network int32
const (
	Network_Unknown Network = 0
	// Native TCP provided by system.
	Network_RawTCP Network = 1
	// V2Ray specific TCP.
	Network_TCP       Network = 2
	Network_UDP       Network = 3
	Network_KCP       Network = 4
	Network_WebSocket Network = 5
)

func ParseNetwork added in v1.1.0

func ParseNetwork(nwStr string) Network

func (Network) AsList added in v1.9.1

func (this Network) AsList() *NetworkList

func (Network) EnumDescriptor added in v1.1.0

func (Network) EnumDescriptor() ([]byte, []int)

func (Network) String added in v1.1.0

func (x Network) String() string

func (Network) SystemString added in v1.1.0

func (this Network) SystemString() string

func (Network) UrlPrefix

func (this Network) UrlPrefix() string

type NetworkList added in v0.14.1

type NetworkList struct {
	Network []Network `protobuf:"varint,1,rep,packed,name=network,enum=v2ray.core.common.net.Network" json:"network,omitempty"`
}

func (*NetworkList) Descriptor added in v1.1.0

func (*NetworkList) Descriptor() ([]byte, []int)

func (NetworkList) Get

func (this NetworkList) Get(idx int) Network

func (NetworkList) HasNetwork added in v0.14.1

func (this NetworkList) HasNetwork(network Network) bool

HashNetwork returns true if the given network is in this NetworkList.

func (*NetworkList) ProtoMessage added in v1.1.0

func (*NetworkList) ProtoMessage()

func (*NetworkList) Reset added in v1.1.0

func (m *NetworkList) Reset()

func (*NetworkList) String added in v1.1.0

func (m *NetworkList) String() string

type Port added in v1.1.0

type Port uint16

Port represents a network port in TCP and UDP protocol.

func PortFromBytes added in v1.1.0

func PortFromBytes(port []byte) Port

PortFromBytes converts a byte array to a Port, assuming bytes are in big endian order. @unsafe Caller must ensure that the byte array has at least 2 elements.

func PortFromInt added in v1.1.0

func PortFromInt(v uint32) (Port, error)

PortFromInt converts an integer to a Port. @error when the integer is not positive or larger then 65535

func PortFromString added in v1.1.0

func PortFromString(s string) (Port, error)

PortFromString converts a string to a Port. @error when the string is not an integer or the integral value is a not a valid Port.

func (Port) Bytes added in v1.1.2

func (this Port) Bytes(b []byte) []byte

Bytes returns the correspoding bytes of this Port, in big endian order.

func (Port) String added in v1.1.0

func (this Port) String() string

String returns the string presentation of this Port.

func (Port) Value added in v1.1.0

func (this Port) Value() uint16

Value return the correspoding uint16 value of this Port.

type PortRange added in v0.14.1

type PortRange struct {
	From uint32 `protobuf:"varint,1,opt,name=From" json:"From,omitempty"`
	To   uint32 `protobuf:"varint,2,opt,name=To" json:"To,omitempty"`
}

PortRange represents a range of ports.

func (PortRange) Contains added in v1.1.0

func (this PortRange) Contains(port Port) bool

Contains returns true if the given port is within the range of this PortRange.

func (*PortRange) Descriptor added in v1.1.0

func (*PortRange) Descriptor() ([]byte, []int)

func (PortRange) FromPort added in v1.1.0

func (this PortRange) FromPort() Port

func (*PortRange) ProtoMessage added in v1.1.0

func (*PortRange) ProtoMessage()

func (*PortRange) Reset added in v1.1.0

func (m *PortRange) Reset()

func (*PortRange) String added in v1.1.0

func (m *PortRange) String() string

func (PortRange) ToPort added in v1.1.0

func (this PortRange) ToPort() Port

type TimeOutReader

type TimeOutReader struct {
	// contains filtered or unexported fields
}

func NewTimeOutReader

func NewTimeOutReader(timeout uint32, connection net.Conn) *TimeOutReader

func (*TimeOutReader) GetTimeOut added in v0.9.1

func (reader *TimeOutReader) GetTimeOut() uint32

func (*TimeOutReader) Read

func (reader *TimeOutReader) Read(p []byte) (int, error)

func (*TimeOutReader) Release added in v1.11.1

func (reader *TimeOutReader) Release()

func (*TimeOutReader) SetTimeOut added in v0.9.1

func (reader *TimeOutReader) SetTimeOut(value uint32)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL