-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsys_linux_386.go
44 lines (36 loc) · 1.11 KB
/
sys_linux_386.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2014 Mikio Hara. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tcp
import (
"syscall"
"unsafe"
)
const (
sysSIOCINQ = 0x541b
sysSIOCOUTQ = 0x5411
)
func ioctl(s uintptr, ioc int, b []byte) error {
if _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, s, uintptr(ioc), uintptr(unsafe.Pointer(&b[0]))); errno != 0 {
return error(errno)
}
return nil
}
const (
sysSETSOCKOPT = 0xe
sysGETSOCKOPT = 0xf
)
func socketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall.Errno)
func setsockopt(s uintptr, level, name int, b []byte) error {
if _, errno := socketcall(sysSETSOCKOPT, s, uintptr(level), uintptr(name), uintptr(unsafe.Pointer(&b[0])), uintptr(len(b)), 0); errno != 0 {
return error(errno)
}
return nil
}
func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
l := uint32(len(b))
if _, errno := socketcall(sysGETSOCKOPT, s, uintptr(level), uintptr(name), uintptr(unsafe.Pointer(&b[0])), uintptr(unsafe.Pointer(&l)), 0); errno != 0 {
return int(l), error(errno)
}
return int(l), nil
}