mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
15 lines
209 B
Go
15 lines
209 B
Go
package obfs
|
|
|
|
import "net"
|
|
|
|
type plain struct{}
|
|
|
|
func init() {
|
|
register("plain", newPlain, 0)
|
|
}
|
|
|
|
func newPlain(b *Base) Obfs {
|
|
return &plain{}
|
|
}
|
|
|
|
func (p *plain) StreamConn(c net.Conn) net.Conn { return c }
|