Documentation
¶
Index ¶
- Constants
- Variables
- func PacketDecode[T any](data []byte) T
- func PacketEncode(data any) []byte
- func RandomServerID(prefix string) string
- func Run(ctx context.Context, options *Options) error
- type Annotations
- type AuthenticationManager
- type ChannelWithChildren
- type ConnectedTunnel
- type ConnectionManager
- type Connections
- type Dailer
- type EventKind
- type EventWatcher
- type GRPCTunnel
- type GrpcTunnelServer
- func (s GrpcTunnelServer) Connect(connectServer proto.PeerService_ConnectServer) error
- func (s GrpcTunnelServer) ConnectUpstream(ctx context.Context, addr string, tlsConfig *tls.Config, token string, ...) error
- func (s GrpcTunnelServer) ConnectUpstreamWithRetry(ctx context.Context, addr string, tlsConfig *tls.Config, token string, ...) error
- func (s GrpcTunnelServer) GrpcServer(tlsConfig *tls.Config) *grpc.Server
- func (s GrpcTunnelServer) ServeGrpc(ctx context.Context, listen string, tlsConfig *tls.Config) error
- type NonAuthManager
- type Options
- type Packet
- type PacketDataConnect
- type PacketDataOpen
- type PacketDataRoute
- type PacketKind
- type RouteTable
- type RouteUpdateKind
- type TLS
- type Tunnel
- type TunnelConn
- func (c *TunnelConn) Close() error
- func (c *TunnelConn) LocalAddr() net.Addr
- func (c *TunnelConn) Read(b []byte) (n int, err error)
- func (c *TunnelConn) RemoteAddr() net.Addr
- func (c *TunnelConn) SetDeadline(t time.Time) error
- func (c *TunnelConn) SetReadDeadline(t time.Time) error
- func (c *TunnelConn) SetWriteDeadline(t time.Time) error
- func (c *TunnelConn) Write(b []byte) (n int, err error)
- type TunnelEvent
- type TunnelEventer
- type TunnelOptions
- type TunnelServer
- func (s *TunnelServer) Connect(ctx context.Context, channel Tunnel, token string, annotations Annotations, ...) error
- func (s *TunnelServer) DialerOn(dest string) Dailer
- func (s *TunnelServer) TransportOnTunnel(dest string) http.RoundTripper
- func (s *TunnelServer) Wacth(ctx context.Context) EventWatcher
Constants ¶
View Source
const ( RouteUpdateKindInvalid RouteUpdateKind = "invalid" RouteUpdateKindInit = "init" RouteUpdateKindAppend = "append" RouteUpdateKindRemove = "remove" )
View Source
const ( DefaultDataChannelSize = 512 MaxOpenConnectTimeout = 30 * time.Second )
View Source
const DefaultEventChannelSize = 1024
View Source
const (
DefaultRetryInterval = 10 * time.Second
)
Variables ¶
View Source
var DefaultDialTimeout = 30 * time.Second
View Source
var ErrFullChannel = errors.New("channel full")
Functions ¶
func PacketDecode ¶
func PacketEncode ¶
func RandomServerID ¶
Types ¶
type Annotations ¶
type AuthenticationManager ¶
type ChannelWithChildren ¶
type ChannelWithChildren struct { Channel *ConnectedTunnel `json:"channel,omitempty"` // channel is the direct connected channel Annotations map[string]string `json:"annotations,omitempty"` Children map[string]Annotations `json:"children,omitempty"` // children are channels connected to the direct channel }
type ConnectedTunnel ¶
type ConnectedTunnel struct { Tunnel ID string Options TunnelOptions }
type ConnectionManager ¶
type ConnectionManager struct {
// contains filtered or unexported fields
}
func NewConectionManager ¶
func NewConectionManager(s *TunnelServer) *ConnectionManager
type Connections ¶
type Connections struct {
// contains filtered or unexported fields
}
type Dailer ¶
type Dailer struct {
// contains filtered or unexported fields
}
func (Dailer) DialContext ¶
type EventWatcher ¶
type EventWatcher struct {
// contains filtered or unexported fields
}
func (*EventWatcher) Close ¶
func (t *EventWatcher) Close()
func (EventWatcher) Result ¶
func (r EventWatcher) Result() <-chan TunnelEvent
type GRPCTunnel ¶
type GRPCTunnel[T grpcstream] struct {
// contains filtered or unexported fields
}
func (*GRPCTunnel[T]) Recv ¶
func (t *GRPCTunnel[T]) Recv(into *Packet) error
func (*GRPCTunnel[T]) Send ¶
func (t *GRPCTunnel[T]) Send(from *Packet) error
type GrpcTunnelServer ¶
type GrpcTunnelServer struct { TunnelServer *TunnelServer ClientAnnotations Annotations // annotations send to downstream clients proto.UnimplementedPeerServiceServer }
func (GrpcTunnelServer) Connect ¶
func (s GrpcTunnelServer) Connect(connectServer proto.PeerService_ConnectServer) error
func (GrpcTunnelServer) ConnectUpstream ¶
func (s GrpcTunnelServer) ConnectUpstream(ctx context.Context, addr string, tlsConfig *tls.Config, token string, annotations Annotations) error
func (GrpcTunnelServer) ConnectUpstreamWithRetry ¶
func (s GrpcTunnelServer) ConnectUpstreamWithRetry(ctx context.Context, addr string, tlsConfig *tls.Config, token string, annotations Annotations) error
func (GrpcTunnelServer) GrpcServer ¶
func (s GrpcTunnelServer) GrpcServer(tlsConfig *tls.Config) *grpc.Server
type Options ¶
type Options struct { PeerID string `json:"peerID,omitempty"` Listen string `json:"listen,omitempty"` UpstreamAddr string `json:"upstreamAddr,omitempty"` EnableClientTLS bool `json:"enableClientTLS,omitempty"` Token string `json:"token,omitempty"` TLS *TLS `json:"tls,omitempty"` }
func NewDefaultOptions ¶
func NewDefaultOptions() *Options
type PacketDataConnect ¶
type PacketDataConnect struct {
Token string `json:"token,omitempty"`
}
type PacketDataOpen ¶
type PacketDataRoute ¶
type PacketDataRoute struct { Kind RouteUpdateKind `json:"kind,omitempty"` Annotations Annotations `json:"annotations,omitempty"` Peers map[string]Annotations `json:"peers,omitempty"` }
type PacketKind ¶
type PacketKind int
const ( PacketKindData PacketKind = iota // data or as a ack PacketKindConnect // handshake and auth PacketKindOpen // open connection PacketKindOpened // connection established PacketKindClose // close connect/stream PacketKindRoute // route update )
type RouteTable ¶
type RouteTable struct {
// contains filtered or unexported fields
}
func NewEmptyRouteTable ¶
func NewEmptyRouteTable(s *TunnelServer) *RouteTable
func (*RouteTable) Connect ¶
func (t *RouteTable) Connect(tun *ConnectedTunnel, data PacketDataRoute)
func (*RouteTable) Disconnect ¶
func (t *RouteTable) Disconnect(stream *ConnectedTunnel)
func (*RouteTable) Select ¶
func (t *RouteTable) Select(dest string) (*ConnectedTunnel, error)
func (*RouteTable) Update ¶
func (t *RouteTable) Update(id string, data PacketDataRoute)
type RouteUpdateKind ¶
type RouteUpdateKind string
type TLS ¶
type TLS struct { CertFile string `json:"certFile,omitempty"` KeyFile string `json:"keyFile,omitempty"` CAFile string `json:"caFile,omitempty"` }
func NewDefaultTLS ¶
func NewDefaultTLS() *TLS
type TunnelConn ¶
type TunnelConn struct {
// contains filtered or unexported fields
}
func (*TunnelConn) Close ¶
func (c *TunnelConn) Close() error
Close tunnel connection and close raw connection,remove self from connection manager
func (*TunnelConn) LocalAddr ¶
func (c *TunnelConn) LocalAddr() net.Addr
func (*TunnelConn) RemoteAddr ¶
func (c *TunnelConn) RemoteAddr() net.Addr
func (*TunnelConn) SetDeadline ¶
func (c *TunnelConn) SetDeadline(t time.Time) error
func (*TunnelConn) SetReadDeadline ¶
func (c *TunnelConn) SetReadDeadline(t time.Time) error
func (*TunnelConn) SetWriteDeadline ¶
func (c *TunnelConn) SetWriteDeadline(t time.Time) error
type TunnelEvent ¶
type TunnelEvent struct { Kind EventKind Peers map[string]Annotations }
type TunnelEventer ¶
type TunnelEventer struct {
// contains filtered or unexported fields
}
func NewTunnelEventer ¶
func NewTunnelEventer(s *TunnelServer) *TunnelEventer
func (*TunnelEventer) Watch ¶
func (t *TunnelEventer) Watch(ctx context.Context) EventWatcher
type TunnelOptions ¶
type TunnelServer ¶
type TunnelServer struct {
// contains filtered or unexported fields
}
func NewTunnelServer ¶
func NewTunnelServer(id string, auth AuthenticationManager) *TunnelServer
func (*TunnelServer) Connect ¶
func (s *TunnelServer) Connect(ctx context.Context, channel Tunnel, token string, annotations Annotations, options TunnelOptions) error
func (*TunnelServer) DialerOn ¶
func (s *TunnelServer) DialerOn(dest string) Dailer
func (*TunnelServer) TransportOnTunnel ¶
func (s *TunnelServer) TransportOnTunnel(dest string) http.RoundTripper
nolint: gomnd same with http.DefaultTransport use http2 rr to reuse http(tcp) connection
func (*TunnelServer) Wacth ¶
func (s *TunnelServer) Wacth(ctx context.Context) EventWatcher
Source Files
¶
Click to show internal directories.
Click to hide internal directories.