We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77bf9f1 commit 08c3922Copy full SHA for 08c3922
overlay/user.go
@@ -18,8 +18,8 @@ func NewUserDevice(tunCidr *net.IPNet) (Device, error) {
18
// these pipes guarantee each write/read will match 1:1
19
return &UserDevice{
20
tunCidr: tunCidr,
21
- outboundChannel: make(chan *buffer.View),
22
- inboundChannel: make(chan *buffer.View),
+ outboundChannel: make(chan *buffer.View, 16),
+ inboundChannel: make(chan *buffer.View, 16),
23
}, nil
24
}
25
0 commit comments