Minor fixes

This commit is contained in:
世界 2022-07-30 14:50:33 +08:00
parent d3378a575c
commit 2ce09b6ffd
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 87 additions and 24 deletions

View file

@ -150,10 +150,12 @@ func (a *myInboundAdapter) newPacketConnection(ctx context.Context, conn N.Packe
func (a *myInboundAdapter) loopTCPIn() {
tcpListener := a.tcpListener
for {
conn, err := tcpListener.Accept()
conn, err := tcpListener.AcceptTCP()
if err != nil {
return
}
conn.SetKeepAlive(true)
conn.SetKeepAlivePeriod(C.TCPKeepAlivePeriod)
go func() {
ctx := log.ContextWithNewID(a.ctx)
var metadata adapter.InboundContext