Documentation ¶
Index ¶
- type Config
- type Connection
- func (v *Connection) Close() error
- func (v *Connection) LocalAddr() net.Addr
- func (v *Connection) Read(b []byte) (int, error)
- func (v *Connection) RemoteAddr() net.Addr
- func (v *Connection) Reusable() bool
- func (v *Connection) SetDeadline(t time.Time) error
- func (v *Connection) SetReadDeadline(t time.Time) error
- func (v *Connection) SetReusable(bool)
- func (v *Connection) SetWriteDeadline(t time.Time) error
- func (v *Connection) Write(b []byte) (int, error)
- type OutboundProxy
- type OutboundProxyFactory
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { }
func (*Config) Descriptor ¶
func (*Config) ProtoMessage ¶
func (*Config) ProtoMessage()
type Connection ¶
type Connection struct {
// contains filtered or unexported fields
}
func NewConnection ¶
func NewConnection(src v2net.Address, dest v2net.Destination, stream ray.Ray) *Connection
func (*Connection) LocalAddr ¶
func (v *Connection) LocalAddr() net.Addr
LocalAddr implements net.Conn.LocalAddr().
func (*Connection) Read ¶
func (v *Connection) Read(b []byte) (int, error)
Read implements net.Conn.Read().
func (*Connection) RemoteAddr ¶
func (v *Connection) RemoteAddr() net.Addr
RemoteAddr implements net.Conn.RemoteAddr().
func (*Connection) Reusable ¶
func (v *Connection) Reusable() bool
func (*Connection) SetDeadline ¶
func (v *Connection) SetDeadline(t time.Time) error
func (*Connection) SetReadDeadline ¶
func (v *Connection) SetReadDeadline(t time.Time) error
func (*Connection) SetReusable ¶
func (v *Connection) SetReusable(bool)
func (*Connection) SetWriteDeadline ¶
func (v *Connection) SetWriteDeadline(t time.Time) error
type OutboundProxy ¶
type OutboundProxy struct {
// contains filtered or unexported fields
}
func NewOutboundProxy ¶
func NewOutboundProxy(space app.Space) *OutboundProxy
func OutboundProxyFromSpace ¶
func OutboundProxyFromSpace(space app.Space) *OutboundProxy
func (*OutboundProxy) Dial ¶
func (v *OutboundProxy) Dial(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error)
Dial implements internet.Dialer.
func (*OutboundProxy) RegisterDialer ¶
func (v *OutboundProxy) RegisterDialer()
type OutboundProxyFactory ¶
type OutboundProxyFactory struct{}
func (OutboundProxyFactory) Create ¶
func (OutboundProxyFactory) Create(space app.Space, config interface{}) (app.Application, error)
Click to show internal directories.
Click to hide internal directories.