summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stack/stack.go
diff options
context:
space:
mode:
authorMikael Magnusson <mikma@users.sourceforge.net>2020-03-17 19:43:03 +0100
committerMikael Magnusson <mikma@users.sourceforge.net>2020-03-17 20:06:04 +0100
commit32896ab56d9ff767af9ed00cb5c9954edb0a2a81 (patch)
treeca54bc673e23bc8c74fb29cf70137c70c0d780b8 /pkg/tcpip/stack/stack.go
parent5b8da876daf5b06ae57e35d6af0180b752ae0c61 (diff)
WIP debug
Diffstat (limited to 'pkg/tcpip/stack/stack.go')
-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{}