Documentation ¶
Index ¶
- Constants
- Variables
- func HttpBasicAuth(h http.HandlerFunc, user, passwd string) http.HandlerFunc
- func MakeHttpGzipHandler(h http.Handler) http.Handler
- func NewHttpBasicAuthWraper(h http.Handler, user, passwd string) http.Handler
- func NewKcpConnFromUdp(conn *net.UDPConn, connected bool, raddr string) (net.Conn, error)
- type CloseNotifyConn
- type Conn
- func CheckAndEnableTLSServerConnWithTimeout(c net.Conn, tlsConfig *tls.Config, timeout time.Duration) (out Conn, err error)
- func ConnectServer(protocol string, addr string) (c Conn, err error)
- func ConnectServerByProxy(proxyUrl string, protocol string, addr string) (c Conn, err error)
- func ConnectServerByProxyWithTLS(proxyUrl string, protocol string, addr string, tlsConfig *tls.Config) (c Conn, err error)
- func ConnectTcpServer(addr string) (c Conn, err error)
- func ConnectWebsocketServer(addr string) (Conn, error)
- func WrapCloseNotifyConn(c net.Conn, closeFn func()) Conn
- func WrapConn(c net.Conn) Conn
- func WrapReadWriteCloserToConn(rwc io.ReadWriteCloser, underConn net.Conn) Conn
- func WrapTLSClientConn(c net.Conn, tlsConfig *tls.Config) (out Conn)
- type CustomListener
- type FakeUdpConn
- func (c *FakeUdpConn) Close() error
- func (c *FakeUdpConn) IsClosed() bool
- func (c *FakeUdpConn) LocalAddr() net.Addr
- func (c *FakeUdpConn) Read(b []byte) (n int, err error)
- func (c *FakeUdpConn) RemoteAddr() net.Addr
- func (c *FakeUdpConn) SetDeadline(t time.Time) error
- func (c *FakeUdpConn) SetReadDeadline(t time.Time) error
- func (c *FakeUdpConn) SetWriteDeadline(t time.Time) error
- func (c *FakeUdpConn) Write(b []byte) (n int, err error)
- type HttpAuthMiddleware
- type HttpAuthWraper
- type HttpGzipWraper
- type KcpListener
- type Listener
- type LogListener
- type StatsConn
- type TcpConn
- type TcpListener
- type UdpListener
- type UdpPacket
- type WebsocketListener
- type WrapLogConn
- type WrapReadWriteCloserConn
- func (conn *WrapReadWriteCloserConn) LocalAddr() net.Addr
- func (conn *WrapReadWriteCloserConn) RemoteAddr() net.Addr
- func (conn *WrapReadWriteCloserConn) SetDeadline(t time.Time) error
- func (conn *WrapReadWriteCloserConn) SetReadDeadline(t time.Time) error
- func (conn *WrapReadWriteCloserConn) SetWriteDeadline(t time.Time) error
Constants ¶
View Source
const (
FrpWebsocketPath = "/~!frp"
)
Variables ¶
View Source
var (
ErrWebsocketListenerClosed = errors.New("websocket listener closed")
)
View Source
var (
FRP_TLS_HEAD_BYTE = 0x17
)
Functions ¶
func HttpBasicAuth ¶
func HttpBasicAuth(h http.HandlerFunc, user, passwd string) http.HandlerFunc
func NewHttpBasicAuthWraper ¶
Types ¶
type CloseNotifyConn ¶
func (*CloseNotifyConn) Close ¶
func (cc *CloseNotifyConn) Close() (err error)
type Conn ¶
Conn is the interface of connections used in frp.
func ConnectServerByProxy ¶
func ConnectTcpServer ¶
func ConnectWebsocketServer ¶
addr: domain:port
func WrapCloseNotifyConn ¶
closeFn will be only called once
func WrapReadWriteCloserToConn ¶
func WrapReadWriteCloserToConn(rwc io.ReadWriteCloser, underConn net.Conn) Conn
type CustomListener ¶
Custom listener
func NewCustomListener ¶
func NewCustomListener() *CustomListener
func (*CustomListener) Accept ¶
func (l *CustomListener) Accept() (Conn, error)
func (*CustomListener) Addr ¶
func (l *CustomListener) Addr() net.Addr
func (*CustomListener) Close ¶
func (l *CustomListener) Close() error
func (*CustomListener) PutConn ¶
func (l *CustomListener) PutConn(conn Conn) error
type FakeUdpConn ¶
func NewFakeUdpConn ¶
func NewFakeUdpConn(l *UdpListener, laddr, raddr net.Addr) *FakeUdpConn
func (*FakeUdpConn) Close ¶
func (c *FakeUdpConn) Close() error
func (*FakeUdpConn) IsClosed ¶
func (c *FakeUdpConn) IsClosed() bool
func (*FakeUdpConn) LocalAddr ¶
func (c *FakeUdpConn) LocalAddr() net.Addr
func (*FakeUdpConn) RemoteAddr ¶
func (c *FakeUdpConn) RemoteAddr() net.Addr
func (*FakeUdpConn) SetDeadline ¶
func (c *FakeUdpConn) SetDeadline(t time.Time) error
func (*FakeUdpConn) SetReadDeadline ¶
func (c *FakeUdpConn) SetReadDeadline(t time.Time) error
func (*FakeUdpConn) SetWriteDeadline ¶
func (c *FakeUdpConn) SetWriteDeadline(t time.Time) error
type HttpAuthMiddleware ¶
type HttpAuthMiddleware struct {
// contains filtered or unexported fields
}
func NewHttpAuthMiddleware ¶
func NewHttpAuthMiddleware(user, passwd string) *HttpAuthMiddleware
func (*HttpAuthMiddleware) Middleware ¶
func (authMid *HttpAuthMiddleware) Middleware(next http.Handler) http.Handler
type HttpAuthWraper ¶
type HttpAuthWraper struct {
// contains filtered or unexported fields
}
func (*HttpAuthWraper) ServeHTTP ¶
func (aw *HttpAuthWraper) ServeHTTP(w http.ResponseWriter, r *http.Request)
type HttpGzipWraper ¶
type HttpGzipWraper struct {
// contains filtered or unexported fields
}
func (*HttpGzipWraper) ServeHTTP ¶
func (gw *HttpGzipWraper) ServeHTTP(w http.ResponseWriter, r *http.Request)
type KcpListener ¶
func (*KcpListener) Accept ¶
func (l *KcpListener) Accept() (Conn, error)
func (*KcpListener) Close ¶
func (l *KcpListener) Close() error
type Listener ¶
func WrapLogListener ¶
type LogListener ¶
func (*LogListener) Accept ¶
func (logL *LogListener) Accept() (Conn, error)
type StatsConn ¶
type StatsConn struct { Conn // contains filtered or unexported fields }
func WrapStatsConn ¶
type TcpListener ¶
func (*TcpListener) Accept ¶
func (l *TcpListener) Accept() (Conn, error)
Wait util get one new connection or listener is closed if listener is closed, err returned.
func (*TcpListener) Close ¶
func (l *TcpListener) Close() error
type UdpListener ¶
func (*UdpListener) Accept ¶
func (l *UdpListener) Accept() (Conn, error)
func (*UdpListener) Close ¶
func (l *UdpListener) Close() error
type WebsocketListener ¶
func ListenWebsocket ¶
func ListenWebsocket(bindAddr string, bindPort int) (*WebsocketListener, error)
func NewWebsocketListener ¶
func NewWebsocketListener(ln net.Listener) (wl *WebsocketListener)
NewWebsocketListener to handle websocket connections ln: tcp listener for websocket connections
func (*WebsocketListener) Accept ¶
func (p *WebsocketListener) Accept() (Conn, error)
func (*WebsocketListener) Close ¶
func (p *WebsocketListener) Close() error
type WrapReadWriteCloserConn ¶
type WrapReadWriteCloserConn struct { io.ReadWriteCloser log.Logger // contains filtered or unexported fields }
func (*WrapReadWriteCloserConn) LocalAddr ¶
func (conn *WrapReadWriteCloserConn) LocalAddr() net.Addr
func (*WrapReadWriteCloserConn) RemoteAddr ¶
func (conn *WrapReadWriteCloserConn) RemoteAddr() net.Addr
func (*WrapReadWriteCloserConn) SetDeadline ¶
func (conn *WrapReadWriteCloserConn) SetDeadline(t time.Time) error
func (*WrapReadWriteCloserConn) SetReadDeadline ¶
func (conn *WrapReadWriteCloserConn) SetReadDeadline(t time.Time) error
func (*WrapReadWriteCloserConn) SetWriteDeadline ¶
func (conn *WrapReadWriteCloserConn) SetWriteDeadline(t time.Time) error
Source Files ¶
Click to show internal directories.
Click to hide internal directories.