Documentation
¶
Index ¶
- Constants
- Variables
- func AddRoute(dst string, gateway string, dev string) error
- func DelRoute(dst string, gateway string, dev string) error
- func GetAuth(r *http.Request) (mac []byte, ok bool)
- func GetIPPacketVersion(b []byte) int
- func GetRoute(dst string) (gateway string, dev string, err error)
- func NewSessionTicketKey(password string) (key [32]byte)
- func NewTLSPSKSessionCache(host string, sessionTicketKey [32]byte) (tls.ClientSessionCache, error)
- func ReadIPPacket(r io.Reader, b []byte) (int, error)
- func RedirectGateway(dev string, gateway string) (reset func() error, err error)
- func SetAuth(r *http.Request, password string)
- func SetupNAT(src string) (cancel func() error, err error)
- func WithAuth(h http.Handler, password string, log Logger) http.Handler
- func WithIOMetric(rw io.ReadWriteCloser, metric *IOMetric) io.ReadWriteCloser
- type BufferPoolMetrics
- type Client
- func (c *Client) CreateTunnel(ctx context.Context, ip net.IP) (tunnel func(context.Context) error, err error)
- func (c *Client) Metrics() *Metrics
- func (c *Client) RequestIPv4(ctx context.Context) (*IPResult, error)
- func (c *Client) RequestIPv6(ctx context.Context) (*IPResult, error)
- func (c *Client) ServeIface(ctx context.Context, iface io.ReadWriteCloser) error
- type ClientAPIError
- type IOMetric
- type IPPool
- type IPResult
- type IPv4Header
- func (b IPv4Header) Checksum() int
- func (b IPv4Header) Dst() net.IP
- func (b IPv4Header) Flags() int
- func (b IPv4Header) FragOff() int
- func (b IPv4Header) ID() int
- func (b IPv4Header) Len() int
- func (b IPv4Header) Options() []byte
- func (b IPv4Header) Protocol() int
- func (b IPv4Header) Src() net.IP
- func (b IPv4Header) String() string
- func (b IPv4Header) TOS() int
- func (b IPv4Header) TTL() int
- func (b IPv4Header) TotalLen() int
- func (b IPv4Header) Version() int
- type IPv6Header
- func (b IPv6Header) Dst() net.IP
- func (b IPv6Header) FlowLabel() int
- func (b IPv6Header) HopLimit() int
- func (b IPv6Header) NextHeader() int
- func (b IPv6Header) PayloadLen() int
- func (b IPv6Header) Src() net.IP
- func (b IPv6Header) String() string
- func (b IPv6Header) TrafficClass() int
- func (b IPv6Header) Version() int
- type Iface
- func (i *Iface) CIDR4() string
- func (i *Iface) CIDR6() string
- func (i *Iface) Close() error
- func (i *Iface) IPv4() net.IP
- func (i *Iface) IPv6() net.IP
- func (i *Iface) MTU() int
- func (i *Iface) SetIPv4(cidr string) error
- func (i *Iface) SetIPv6(cidr string) error
- func (i *Iface) Subnet4() *net.IPNet
- func (i *Iface) Subnet6() *net.IPNet
- type LevelLogger
- func (l *LevelLogger) Debug(v ...interface{})
- func (l *LevelLogger) Debugf(format string, v ...interface{})
- func (l *LevelLogger) Error(v ...interface{})
- func (l *LevelLogger) Errorf(format string, v ...interface{})
- func (l *LevelLogger) Fatal(v ...interface{})
- func (l *LevelLogger) Fatalf(format string, v ...interface{})
- func (l *LevelLogger) Info(v ...interface{})
- func (l *LevelLogger) Infof(format string, v ...interface{})
- func (l *LevelLogger) Level() int
- func (l *LevelLogger) Log(level int, v ...interface{})
- func (l *LevelLogger) Logf(level int, format string, v ...interface{})
- func (l *LevelLogger) Panic(v ...interface{})
- func (l *LevelLogger) Panicf(format string, v ...interface{})
- func (l *LevelLogger) Trace(v ...interface{})
- func (l *LevelLogger) Tracef(format string, v ...interface{})
- func (l *LevelLogger) Warn(v ...interface{})
- func (l *LevelLogger) Warnf(format string, v ...interface{})
- type Logger
- type MetricInt
- type Metrics
- type Server
- func (s *Server) CreateTunnel(ip net.IP, cid string, rw io.ReadWriteCloser) (func(ctx context.Context) error, error)
- func (s *Server) Handler(ctx context.Context, prefix string) http.Handler
- func (s *Server) Metrics() *Metrics
- func (s *Server) RequestIPv4(cid string) (*IPResult, error)
- func (s *Server) RequestIPv6(cid string) (*IPResult, error)
- func (s *Server) ServeIface(ctx context.Context, iface io.ReadWriteCloser) error
- type SubnetIPPool
- type TunnelMetrics
Constants ¶
const ( // LogLevelNull ... LogLevelNull = iota // LogLevelFatal ... LogLevelFatal // LogLevelPanic ... LogLevelPanic // LogLevelError ... LogLevelError // LogLevelWarn ... LogLevelWarn // LogLevelInfo ... LogLevelInfo // LogLevelDebug ... LogLevelDebug // LogLevelTrace ... LogLevelTrace )
const ( // IPv4HeaderLen is IPv4 header length without extension headers IPv4HeaderLen = 20 // IPv6HeaderLen is IPv6 header length without extension headers IPv6HeaderLen = 40 )
const DefaultMTU = 1400
DefaultMTU TODO
Variables ¶
var ( // ErrNoIPConfig ... ErrNoIPConfig = &statusError{http.StatusUnprocessableEntity, "no ip config"} // ErrUnableAssignIP ... ErrUnableAssignIP = &statusError{http.StatusServiceUnavailable, "unable to assign ip address"} // ErrIPConflict ... ErrIPConflict = &statusError{http.StatusConflict, "ip conflict"} // ErrInvalidIP ... ErrInvalidIP = &statusError{http.StatusBadRequest, "invalid ip address"} )
var LogLevelTexts = map[int]string{ LogLevelNull: "NULL", LogLevelFatal: "FATAL", LogLevelPanic: "PANIC", LogLevelError: "ERROR", LogLevelWarn: "WARN", LogLevelInfo: "INFO", LogLevelDebug: "DEBUG", LogLevelTrace: "TRACE", }
LogLevelTexts ...
var LogLevelValues map[string]int
LogLevelValues ...
Functions ¶
func GetIPPacketVersion ¶
GetIPPacketVersion gets ip protocol version from ip packet
func NewSessionTicketKey ¶
NewSessionTicketKey ...
func NewTLSPSKSessionCache ¶
func NewTLSPSKSessionCache(host string, sessionTicketKey [32]byte) (tls.ClientSessionCache, error)
NewTLSPSKSessionCache ...
func ReadIPPacket ¶
ReadIPPacket reads a IPv4/IPv6 packet from the io.Reader
func RedirectGateway ¶
RedirectGateway 参考 https://www.tinc-vpn.org/examples/redirect-gateway/
func WithIOMetric ¶
func WithIOMetric(rw io.ReadWriteCloser, metric *IOMetric) io.ReadWriteCloser
WithIOMetric ...
Types ¶
type BufferPoolMetrics ¶
type BufferPoolMetrics struct { FreeBytes *MetricInt `json:"free_bytes"` TotalBytes *MetricInt `json:"total_bytes"` }
BufferPoolMetrics ...
type Client ¶
type Client struct { MTU int CID string Host string Dial func(network, addr string) (net.Conn, error) TLSConfig *tls.Config URLPrefix string Auth func(r *http.Request) Logger Logger UseH2C bool UseH3 bool Noise int // contains filtered or unexported fields }
Client ...
func (*Client) CreateTunnel ¶
func (c *Client) CreateTunnel(ctx context.Context, ip net.IP) (tunnel func(context.Context) error, err error)
CreateTunnel ...
func (*Client) RequestIPv4 ¶
RequestIPv4 ...
func (*Client) RequestIPv6 ¶
RequestIPv6 ...
func (*Client) ServeIface ¶
ServeIface ...
type ClientAPIError ¶
type ClientAPIError struct { Err error // contains filtered or unexported fields }
ClientAPIError ...
func (*ClientAPIError) Error ¶
func (e *ClientAPIError) Error() string
type IOMetric ¶
type IOMetric struct { ReadBytes *MetricInt `json:"read_bytes"` WriteBytes *MetricInt `json:"write_bytes"` }
IOMetric ...
type IPPool ¶
type IPPool interface { Get(cid string) (net.IP, net.IPMask, bool) Use(ip net.IP, cid string) (net.IPMask, bool) Free(net.IP) Gateway() net.IP }
IPPool assigns ip addresses
type IPv4Header ¶
type IPv4Header []byte
IPv4Header represents an IPv4 header
func (IPv4Header) String ¶
func (b IPv4Header) String() string
type IPv6Header ¶
type IPv6Header []byte
IPv6Header represents an IPv6 base header
func (IPv6Header) String ¶
func (b IPv6Header) String() string
func (IPv6Header) TrafficClass ¶
func (b IPv6Header) TrafficClass() int
TrafficClass is traffic class
type LevelLogger ¶
type LevelLogger struct {
// contains filtered or unexported fields
}
LevelLogger ...
func (*LevelLogger) Debugf ¶
func (l *LevelLogger) Debugf(format string, v ...interface{})
Debugf ...
func (*LevelLogger) Errorf ¶
func (l *LevelLogger) Errorf(format string, v ...interface{})
Errorf ...
func (*LevelLogger) Fatalf ¶
func (l *LevelLogger) Fatalf(format string, v ...interface{})
Fatalf ...
func (*LevelLogger) Logf ¶
func (l *LevelLogger) Logf(level int, format string, v ...interface{})
Logf ...
func (*LevelLogger) Panicf ¶
func (l *LevelLogger) Panicf(format string, v ...interface{})
Panicf ...
func (*LevelLogger) Tracef ¶
func (l *LevelLogger) Tracef(format string, v ...interface{})
Tracef ...
type Logger ¶
type Logger interface { Level() int Fatal(v ...interface{}) Fatalf(format string, v ...interface{}) Panic(v ...interface{}) Panicf(format string, v ...interface{}) Error(v ...interface{}) Errorf(format string, v ...interface{}) Warn(v ...interface{}) Warnf(format string, v ...interface{}) Info(v ...interface{}) Infof(format string, v ...interface{}) Debug(v ...interface{}) Debugf(format string, v ...interface{}) Trace(v ...interface{}) Tracef(format string, v ...interface{}) }
Logger ...
type Metrics ¶
type Metrics struct { Iface *IOMetric `json:"iface"` Tunnels *TunnelMetrics `json:"tunnels"` Buffer *BufferPoolMetrics `json:"buffer"` }
Metrics ...
type Server ¶
type Server struct { MTU int IPv4Pool IPPool IPv6Pool IPPool SessionTTL time.Duration Logger Logger Noise int // contains filtered or unexported fields }
Server ...
func (*Server) CreateTunnel ¶
func (s *Server) CreateTunnel(ip net.IP, cid string, rw io.ReadWriteCloser) (func(ctx context.Context) error, error)
CreateTunnel ...
func (*Server) RequestIPv4 ¶
RequestIPv4 ...
func (*Server) RequestIPv6 ¶
RequestIPv6 ...
func (*Server) ServeIface ¶
ServeIface ...
type SubnetIPPool ¶
type SubnetIPPool struct {
// contains filtered or unexported fields
}
SubnetIPPool assigns ip addresses in a subnet segment. Currently supports up to 256 allocations.
func NewSubnetIPPool ¶
NewSubnetIPPool ...