From 9f7989a9d08136734c97c9b533d08b51f6685b56 Mon Sep 17 00:00:00 2001 From: xjasonlyu Date: Thu, 31 Mar 2022 14:06:56 +0800 Subject: [PATCH] Fix: import missing --- component/dialer/sockopt_others.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/component/dialer/sockopt_others.go b/component/dialer/sockopt_others.go index 00224d6..957fd44 100644 --- a/component/dialer/sockopt_others.go +++ b/component/dialer/sockopt_others.go @@ -2,6 +2,8 @@ package dialer +import "syscall" + func setSocketOptions(network, address string, c syscall.RawConn, opts *Options) error { return nil }