Documentation ¶
Index ¶
- Variables
- type Address
- func ConvertFakeDNS(src Address, real string) Address
- func ParseAddress(network, addr string) (ad Address, _ error)
- func ParseAddressSplit(network, addr string, por uint16) (ad Address)
- func ParseIPAddr(ad *net.IPAddr) Address
- func ParseSysAddr(ad net.Addr) (Address, error)
- func ParseTCPAddress(ad *net.TCPAddr) Address
- func ParseUDPAddr(ad *net.UDPAddr) Address
- func ParseUnixAddr(ad *net.UnixAddr) Address
- type Discard
- type DiscardConn
- func (*DiscardConn) Close() error
- func (*DiscardConn) LocalAddr() net.Addr
- func (*DiscardConn) Read(b []byte) (n int, err error)
- func (*DiscardConn) RemoteAddr() net.Addr
- func (*DiscardConn) SetDeadline(t time.Time) error
- func (*DiscardConn) SetReadDeadline(t time.Time) error
- func (*DiscardConn) SetWriteDeadline(t time.Time) error
- func (*DiscardConn) Write(b []byte) (n int, err error)
- type DiscardPacketConn
- func (*DiscardPacketConn) Close() error
- func (*DiscardPacketConn) LocalAddr() net.Addr
- func (*DiscardPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error)
- func (*DiscardPacketConn) SetDeadline(t time.Time) error
- func (*DiscardPacketConn) SetReadDeadline(t time.Time) error
- func (*DiscardPacketConn) SetWriteDeadline(t time.Time) error
- func (*DiscardPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error)
- type DomainAddr
- func (s *DomainAddr) AddMark(key, value any)
- func (s *DomainAddr) GetMark(key any) (any, bool)
- func (d *DomainAddr) Hostname() string
- func (d *DomainAddr) IP() (net.IP, error)
- func (d *DomainAddr) IPHost() (string, error)
- func (d *DomainAddr) Network() string
- func (d *DomainAddr) Port() Port
- func (s *DomainAddr) RangeMark(f func(k, v any) bool)
- func (d *DomainAddr) String() string
- func (d *DomainAddr) TCPAddr() (*net.TCPAddr, error)
- func (d *DomainAddr) Type() Type
- func (d *DomainAddr) UDPAddr() (*net.UDPAddr, error)
- func (d *DomainAddr) WithResolver(resolver dns.DNS)
- func (d *DomainAddr) Zone() string
- type IPAddr
- type PacketProxy
- type Port
- type Proxy
- type StreamProxy
- type Type
Constants ¶
This section is empty.
Variables ¶
View Source
var DiscardNetConn net.Conn = &DiscardConn{}
View Source
var DiscardNetPacketConn net.PacketConn = &DiscardPacketConn{}
Functions ¶
This section is empty.
Types ¶
type Address ¶
type Address interface { // Hostname return hostname of address, eg: www.example.com, 127.0.0.1, ff::ff Hostname() string // IP return net.IP, if address is ip else resolve the domain and return one of ips IP() (net.IP, error) // Port return port of address Port() Port // Type return type of address, domain or ip Type() Type net.Addr WithResolver(dns.DNS) Zone() string // IPv6 scoped addressing zone UDPAddr() (*net.UDPAddr, error) TCPAddr() (*net.TCPAddr, error) // IPHost if address is ip, return host, else resolve domain to ip and return JoinHostPort(ip,port) IPHost() (string, error) AddMark(key, value any) GetMark(key any) (any, bool) RangeMark(func(k, v any) bool) }
var EmptyAddr Address = &emptyAddr{}
func ConvertFakeDNS ¶
func ParseAddress ¶
func ParseAddressSplit ¶
func ParseIPAddr ¶
func ParseTCPAddress ¶
func ParseUDPAddr ¶
func ParseUnixAddr ¶
type Discard ¶
type Discard struct{}
func (*Discard) PacketConn ¶
func (*Discard) PacketConn(Address) (net.PacketConn, error)
type DiscardConn ¶
type DiscardConn struct{}
func (*DiscardConn) Close ¶
func (*DiscardConn) Close() error
func (*DiscardConn) LocalAddr ¶
func (*DiscardConn) LocalAddr() net.Addr
func (*DiscardConn) RemoteAddr ¶
func (*DiscardConn) RemoteAddr() net.Addr
func (*DiscardConn) SetDeadline ¶
func (*DiscardConn) SetDeadline(t time.Time) error
func (*DiscardConn) SetReadDeadline ¶
func (*DiscardConn) SetReadDeadline(t time.Time) error
func (*DiscardConn) SetWriteDeadline ¶
func (*DiscardConn) SetWriteDeadline(t time.Time) error
type DiscardPacketConn ¶
type DiscardPacketConn struct{}
func (*DiscardPacketConn) Close ¶
func (*DiscardPacketConn) Close() error
func (*DiscardPacketConn) LocalAddr ¶
func (*DiscardPacketConn) LocalAddr() net.Addr
func (*DiscardPacketConn) SetDeadline ¶
func (*DiscardPacketConn) SetDeadline(t time.Time) error
func (*DiscardPacketConn) SetReadDeadline ¶
func (*DiscardPacketConn) SetReadDeadline(t time.Time) error
func (*DiscardPacketConn) SetWriteDeadline ¶
func (*DiscardPacketConn) SetWriteDeadline(t time.Time) error
type DomainAddr ¶
type DomainAddr struct {
// contains filtered or unexported fields
}
func (*DomainAddr) Hostname ¶
func (d *DomainAddr) Hostname() string
func (*DomainAddr) IPHost ¶
func (d *DomainAddr) IPHost() (string, error)
func (*DomainAddr) Network ¶
func (d *DomainAddr) Network() string
func (*DomainAddr) Port ¶
func (d *DomainAddr) Port() Port
func (*DomainAddr) String ¶
func (d *DomainAddr) String() string
func (*DomainAddr) Type ¶
func (d *DomainAddr) Type() Type
func (*DomainAddr) WithResolver ¶
func (d *DomainAddr) WithResolver(resolver dns.DNS)
func (*DomainAddr) Zone ¶
func (d *DomainAddr) Zone() string
type PacketProxy ¶
type PacketProxy interface {
PacketConn(Address) (net.PacketConn, error)
}
Click to show internal directories.
Click to hide internal directories.