From 747320a7aa013f6b987f8f52173f51ff3aedb66c Mon Sep 17 00:00:00 2001 From: Ian Gudger Date: Tue, 17 Sep 2019 11:29:03 -0700 Subject: Update remaining users of LinkEndpoints to not refer to them as an ID. PiperOrigin-RevId: 269614517 --- pkg/tcpip/sample/tun_tcp_connect/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/tcpip/sample/tun_tcp_connect') diff --git a/pkg/tcpip/sample/tun_tcp_connect/main.go b/pkg/tcpip/sample/tun_tcp_connect/main.go index e2021cd15..f12189580 100644 --- a/pkg/tcpip/sample/tun_tcp_connect/main.go +++ b/pkg/tcpip/sample/tun_tcp_connect/main.go @@ -138,11 +138,11 @@ func main() { log.Fatal(err) } - linkID, err := fdbased.New(&fdbased.Options{FDs: []int{fd}, MTU: mtu}) + linkEP, err := fdbased.New(&fdbased.Options{FDs: []int{fd}, MTU: mtu}) if err != nil { log.Fatal(err) } - if err := s.CreateNIC(1, sniffer.New(linkID)); err != nil { + if err := s.CreateNIC(1, sniffer.New(linkEP)); err != nil { log.Fatal(err) } -- cgit v1.2.3