mirror of
https://github.com/xtaci/kcptun.git
synced 2024-04-21 12:32:32 +00:00
remove obsolete file
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/pkg/errors"
|
||||
kcp "github.com/xtaci/kcp-go"
|
||||
"github.com/xtaci/tcpraw"
|
||||
)
|
||||
|
||||
func listen(config *Config, block kcp.BlockCrypt) (*kcp.Listener, error) {
|
||||
if config.TCP {
|
||||
conn, err := tcpraw.Listen("tcp", config.Listen)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "tcpraw.Listen()")
|
||||
}
|
||||
return kcp.ServeConn(block, config.DataShard, config.ParityShard, conn)
|
||||
}
|
||||
return kcp.ListenWithOptions(config.Listen, block, config.DataShard, config.ParityShard)
|
||||
}
|
||||
Reference in New Issue
Block a user