Compatibility

This commit is contained in:
kayos@tcp.direct 2022-09-22 17:04:14 -07:00
父節點 95d4afc82a
當前提交 2461423589
簽署人: kayos
GPG 金鑰 ID: 4B841471B4BEE979

查看文件

@ -135,6 +135,13 @@ type config struct {
*sync.RWMutex *sync.RWMutex
} }
// NewDefaultSwamp returns a new Swamp instance.
//
// Deprecated: use NewProxyEngine instead.
func NewDefaultSwamp() *Swamp {
return NewProxyEngine()
}
// NewProxyEngine returns a Swamp with default options. // NewProxyEngine returns a Swamp with default options.
// After calling this you may use the various "setters" to change the options before calling Swamp.Start(). // After calling this you may use the various "setters" to change the options before calling Swamp.Start().
func NewProxyEngine() *Swamp { func NewProxyEngine() *Swamp {