sys_const_unix.go 407 B

1234567891011121314151617
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
  5. package socket
  6. import "golang.org/x/sys/unix"
  7. const (
  8. sysAF_UNSPEC = unix.AF_UNSPEC
  9. sysAF_INET = unix.AF_INET
  10. sysAF_INET6 = unix.AF_INET6
  11. sysSOCK_RAW = unix.SOCK_RAW
  12. )