aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/google/gopacket/afpacket/sockopt_linux_386.go
blob: 8c3eb424d4c05e1d91a689ed6bd46774483be9da (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2012 Google, Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree.

// +build linux,386

package afpacket

import (
	"unsafe"

	"golang.org/x/sys/unix"
)

const (
	sysSETSOCKOPT = 0xe
	sysGETSOCKOPT = 0xf
)

func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, unix.Errno)

// setsockopt provides access to the setsockopt syscall.
func setsockopt(fd, level, name int, v unsafe.Pointer, l uintptr) error {
	_, errno := socketcall(
		sysSETSOCKOPT,
		uintptr(fd),
		uintptr(level),
		uintptr(name),
		uintptr(v),
		l,
		0,
	)
	if errno != 0 {
		return error(errno)
	}

	return nil
}

func getsockopt(fd, level, name int, v unsafe.Pointer, l uintptr) error {
	_, errno := socketcall(
		sysGETSOCKOPT,
		uintptr(fd),
		uintptr(level),
		uintptr(name),
		uintptr(v),
		l,
		0,
	)
	if errno != 0 {
		return error(errno)
	}

	return nil
}