This commit is contained in:
kayos@tcp.direct 2022-09-22 17:04:14 -07:00
джерело 95d4afc82a
коміт 2461423589
Підписано: kayos
Ідентифікатор GPG ключа: 4B841471B4BEE979

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