This commit is contained in:
deepch 2023-05-25 12:35:12 +03:00
parent 8d4be0821c
commit 9e244f72bf

View File

@ -40,7 +40,7 @@ func NewProxyConn(netconn net.Conn) *ProxyConn {
conn.writebuf = make([]byte, 4096)
conn.readbuf = make([]byte, 4096)
conn.session = uuid.New().String()
conn.cseq = 0
conn.cseq = 1
return conn
}