1
0
Fork 0
mirror of https://github.com/vbatts/srvdav.git synced 2025-07-04 17:48:31 +00:00

vendor: dep init

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-04-03 20:33:38 -04:00
parent 83a1e114b0
commit 6feae25207
Signed by: vbatts
GPG key ID: 10937E57733F1362
945 changed files with 238318 additions and 0 deletions

43
vendor/golang.org/x/net/lif/lif.go generated vendored Normal file
View file

@ -0,0 +1,43 @@
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build solaris
// Package lif provides basic functions for the manipulation of
// logical network interfaces and interface addresses on Solaris.
//
// The package supports Solaris 11 or above.
package lif
import "syscall"
type endpoint struct {
af int
s uintptr
}
func (ep *endpoint) close() error {
return syscall.Close(int(ep.s))
}
func newEndpoints(af int) ([]endpoint, error) {
var lastErr error
var eps []endpoint
afs := []int{sysAF_INET, sysAF_INET6}
if af != sysAF_UNSPEC {
afs = []int{af}
}
for _, af := range afs {
s, err := syscall.Socket(af, sysSOCK_DGRAM, 0)
if err != nil {
lastErr = err
continue
}
eps = append(eps, endpoint{af: af, s: uintptr(s)})
}
if len(eps) == 0 {
return nil, lastErr
}
return eps, nil
}