summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/google/gopacket/pcap/defs_windows_amd64.go
blob: 9619215903e0eea82b667c9a79f99cc95ca95005 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright 2019 The GoPacket Authors. 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.

// This file contains necessary structs/constants generated from libpcap headers with cgo -godefs
// generated with: generate_defs.exe
// DO NOT MODIFY

package pcap

import "syscall"

const errorBufferSize = 0x100

const (
	pcapErrorNotActivated    = -0x3
	pcapErrorActivated       = -0x4
	pcapWarningPromisc       = 0x2
	pcapErrorNoSuchDevice    = -0x5
	pcapErrorDenied          = -0x8
	pcapErrorNotUp           = -0x9
	pcapError                = -0x1
	pcapWarning              = 0x1
	pcapDIN                  = 0x1
	pcapDOUT                 = 0x2
	pcapDINOUT               = 0x0
	pcapNetmaskUnknown       = 0xffffffff
	pcapTstampPrecisionMicro = 0x0
	pcapTstampPrecisionNano  = 0x1
)

type timeval struct {
	Sec  int32
	Usec int32
}
type pcapPkthdr struct {
	Ts     timeval
	Caplen uint32
	Len    uint32
}
type pcapTPtr uintptr
type pcapBpfInstruction struct {
	Code uint16
	Jt   uint8
	Jf   uint8
	K    uint32
}
type pcapBpfProgram struct {
	Len       uint32
	Pad_cgo_0 [4]byte
	Insns     *pcapBpfInstruction
}
type pcapStats struct {
	Recv   uint32
	Drop   uint32
	Ifdrop uint32
}
type pcapCint int32
type pcapIf struct {
	Next        *pcapIf
	Name        *int8
	Description *int8
	Addresses   *pcapAddr
	Flags       uint32
	Pad_cgo_0   [4]byte
}

type pcapAddr struct {
	Next      *pcapAddr
	Addr      *syscall.RawSockaddr
	Netmask   *syscall.RawSockaddr
	Broadaddr *syscall.RawSockaddr
	Dstaddr   *syscall.RawSockaddr
}