summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stack
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tcpip/stack')
-rw-r--r--pkg/tcpip/stack/stack.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/tcpip/stack/stack.go b/pkg/tcpip/stack/stack.go
index 5ffb7166f..68abdb43b 100644
--- a/pkg/tcpip/stack/stack.go
+++ b/pkg/tcpip/stack/stack.go
@@ -21,6 +21,7 @@ package stack
import (
"encoding/binary"
+ "fmt"
"sync/atomic"
"time"
@@ -615,6 +616,7 @@ func (*TransportEndpointInfo) IsEndpointInfo() {}
// stack. Please refer to individual protocol implementations as to what options
// are supported.
func New(opts Options) *Stack {
+ fmt.Println("stack.New()")
clock := opts.Clock
if clock == nil {
clock = &tcpip.StdClock{}