diff -r c040f992052f -r 1c52a0eeb952 vendor/golang.org/x/sys/unix/syscall_netbsd_386.go --- a/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go Wed Sep 18 19:17:42 2019 +0200 +++ b/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go Sun Feb 16 18:54:01 2020 +0100 @@ -28,6 +28,10 @@ msghdr.Controllen = uint32(length) } +func (msghdr *Msghdr) SetIovlen(length int) { + msghdr.Iovlen = int32(length) +} + func (cmsg *Cmsghdr) SetLen(length int) { cmsg.Len = uint32(length) }