Documentation ¶
Index ¶
- func NewHandler(ctx context.Context, config *core.OutboundHandlerConfig) (outbound.Handler, error)
- type Handler
- func (h *Handler) Address() net.Address
- func (h *Handler) Close() error
- func (h *Handler) Dial(ctx context.Context, dest net.Destination) (internet.Connection, error)
- func (h *Handler) Dispatch(ctx context.Context, link *transport.Link)
- func (h *Handler) GetOutbound() proxy.Outbound
- func (h *Handler) Start() error
- func (h *Handler) Tag() string
- type Manager
- func (m *Manager) AddHandler(ctx context.Context, handler outbound.Handler) error
- func (m *Manager) Close() error
- func (m *Manager) GetDefaultHandler() outbound.Handler
- func (m *Manager) GetHandler(tag string) outbound.Handler
- func (m *Manager) RemoveHandler(ctx context.Context, tag string) error
- func (m *Manager) Select(selectors []string) []string
- func (m *Manager) Start() error
- func (m *Manager) Type() interface{}
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewHandler ¶
NewHandler create a new Handler based on the given configuration.
Types ¶
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler is an implements of outbound.Handler.
func (*Handler) Dial ¶
func (h *Handler) Dial(ctx context.Context, dest net.Destination) (internet.Connection, error)
Dial implements internet.Dialer.
func (*Handler) GetOutbound ¶
GetOutbound implements proxy.GetOutbound.
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager is to manage all outbound handlers.
func (*Manager) AddHandler ¶
AddHandler implements outbound.Manager.
func (*Manager) GetDefaultHandler ¶
GetDefaultHandler implements outbound.Manager.
func (*Manager) GetHandler ¶
GetHandler implements outbound.Manager.
func (*Manager) RemoveHandler ¶
RemoveHandler implements outbound.Manager.
Click to show internal directories.
Click to hide internal directories.