mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Minor fixes
This commit is contained in:
parent
29f78248dc
commit
7f84191748
12 changed files with 69 additions and 39 deletions
|
@ -7,14 +7,18 @@ import (
|
|||
|
||||
"github.com/sagernet/sing-box"
|
||||
"github.com/sagernet/sing-box/option"
|
||||
"github.com/sagernet/sing/common/control"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
"github.com/sagernet/sing/protocol/socks"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
"time"
|
||||
)
|
||||
|
||||
func mkPort(t *testing.T) uint16 {
|
||||
var lc net.ListenConfig
|
||||
lc.Control = control.ReuseAddr()
|
||||
for {
|
||||
tcpListener, err := net.ListenTCP("tcp", nil)
|
||||
require.NoError(t, err)
|
||||
|
@ -36,6 +40,7 @@ func startInstance(t *testing.T, options option.Options) {
|
|||
t.Cleanup(func() {
|
||||
instance.Close()
|
||||
})
|
||||
time.Sleep(time.Second)
|
||||
}
|
||||
|
||||
func testSuit(t *testing.T, clientPort uint16, testPort uint16) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue