repo stringlengths 6 47 | file_url stringlengths 77 269 | file_path stringlengths 5 186 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-07 08:35:43 2026-01-07 08:55:24 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/kernel.org/pub/linux/libs/security/libcap/cap/iab.go | vendor/kernel.org/pub/linux/libs/security/libcap/cap/iab.go | package cap
import "strings"
// omask returns the offset and mask for a specific capability.
func omask(c Value) (uint, uint32) {
u := uint(c)
return u >> 5, uint32(1) << (u & 31)
}
// IAB holds a summary of all of the inheritable capability vectors:
// Inh, Amb and Bound. The Bound vector is the logical inverse (... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/kernel.org/pub/linux/libs/security/libcap/cap/cap.go | vendor/kernel.org/pub/linux/libs/security/libcap/cap/cap.go | // Package cap provides all the Linux Capabilities userspace library API
// bindings in native Go.
//
// Capabilities are a feature of the Linux kernel that allow fine
// grain permissions to perform privileged operations. Privileged
// operations are required to do irregular system level operations
// from code. You c... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/kernel.org/pub/linux/libs/security/libcap/psx/psx.go | vendor/kernel.org/pub/linux/libs/security/libcap/psx/psx.go | // +build linux,!cgo
// +build go1.16
package psx // import "kernel.org/pub/linux/libs/security/libcap/psx"
import "syscall"
// Documentation for these functions are provided in the psx_cgo.go
// file.
//go:uintptrescapes
func Syscall3(syscallnr, arg1, arg2, arg3 uintptr) (uintptr, uintptr, syscall.Errno) {
return... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/kernel.org/pub/linux/libs/security/libcap/psx/psx_cgo.go | vendor/kernel.org/pub/linux/libs/security/libcap/psx/psx_cgo.go | // +build linux,cgo
package psx // import "kernel.org/pub/linux/libs/security/libcap/psx"
import (
"runtime"
"syscall"
)
// #cgo LDFLAGS: -lpthread -Wl,-wrap,pthread_create
//
// #include <errno.h>
// #include "psx_syscall.h"
//
// long __errno_too(long set_errno) {
// long v = errno;
// if (set_errno >= 0... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/kernel.org/pub/linux/libs/security/libcap/psx/doc.go | vendor/kernel.org/pub/linux/libs/security/libcap/psx/doc.go | // Package psx provides support for system calls that are run
// simultanously on all threads under Linux.
//
// This property can be used to work around a historical lack of
// native Go support for such a feature. Something that is the subject
// of:
//
// https://github.com/golang/go/issues/1435
//
// The package ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/time/rate/rate.go | vendor/golang.org/x/time/rate/rate.go | // Copyright 2015 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.
// Package rate provides a rate limiter.
package rate
import (
"context"
"fmt"
"math"
"sync"
"time"
)
// Limit defines the maximum frequency of some even... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/vm.go | vendor/golang.org/x/net/bpf/vm.go | // 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.
package bpf
import (
"errors"
"fmt"
)
// A VM is an emulated BPF virtual machine.
type VM struct {
filter []Instruction
}
// NewVM returns a new VM using ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/constants.go | vendor/golang.org/x/net/bpf/constants.go | // 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.
package bpf
// A Register is a register of the BPF virtual machine.
type Register uint16
const (
// RegA is the accumulator register. RegA is always the
// ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/vm_instructions.go | vendor/golang.org/x/net/bpf/vm_instructions.go | // 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.
package bpf
import (
"encoding/binary"
"fmt"
)
func aluOpConstant(ins ALUOpConstant, regA uint32) uint32 {
return aluOpCommon(ins.Op, regA, ins.Val)
}
fun... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/setter.go | vendor/golang.org/x/net/bpf/setter.go | // Copyright 2017 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.
package bpf
// A Setter is a type which can attach a compiled BPF filter to itself.
type Setter interface {
SetBPF(filter []RawInstruction) error
}
| go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/instructions.go | vendor/golang.org/x/net/bpf/instructions.go | // 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.
package bpf
import "fmt"
// An Instruction is one instruction executed by the BPF virtual
// machine.
type Instruction interface {
// Assemble assembles the ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/doc.go | vendor/golang.org/x/net/bpf/doc.go | // 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.
/*
Package bpf implements marshaling and unmarshaling of programs for the
Berkeley Packet Filter virtual machine, and provides a Go implementation
of the virtu... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/net/bpf/asm.go | vendor/golang.org/x/net/bpf/asm.go | // 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.
package bpf
import "fmt"
// Assemble converts insts into raw instructions suitable for loading
// into a BPF virtual machine.
//
// Currently, no optimization... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go | vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go | // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build mips64,openbsd
package unix
const (
SYS_EXIT = 1 // { void sys_exit(int rval); }
SYS_FORK = 2 // { int sys_fo... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go | vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -fsigned-char /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,linux
package unix
const (
SYS_IO_SETUP = 0
SYS_IO_DESTROY = 1
SYS_IO_SUBMIT = 2
SYS_... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go | vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go | // go run mksyscall_aix_ppc.go -aix -tags aix,ppc syscall_aix.go syscall_aix_ppc.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build aix,ppc
package unix
/*
#include <stdint.h>
#include <stddef.h>
int utimes(uintptr_t, uintptr_t);
int utimensat(int, uintptr_t, uintptr_t, int);
int getcwd... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/dev_darwin.go | vendor/golang.org/x/sys/unix/dev_darwin.go | // Copyright 2017 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.
// Functions to access/create device major and minor numbers matching the
// encoding used in Darwin's sys/types.h header.
package unix
// Major returns the m... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go | vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go | // Copyright 2018 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 riscv64,linux
package unix
import "unsafe"
func EpollCreate(size int) (fd int, err error) {
if size <= 0 {
return -1, EINVAL
}
return EpollCre... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go | vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go | // go run mksyscall.go -tags linux,mips64 syscall_linux.go syscall_linux_mips64x.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build linux,mips64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func fano... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go | vendor/golang.org/x/sys/unix/syscall_freebsd_386.go | // Copyright 2009 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 386,freebsd
package unix
import (
"syscall"
"unsafe"
)
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: int32(sec), Nsec: int32... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go | vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go | // go run mksyscall.go -tags darwin,amd64,go1.13 syscall_darwin.1_13.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build darwin,amd64,go1.13
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func closedir(... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go | vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go | // go run mksyscall.go -l32 -netbsd -arm -tags netbsd,arm syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build netbsd,arm
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go | vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go | // go run mksyscall.go -l32 -tags darwin,arm,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_arm.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build darwin,arm,go1.12
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go | vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go | // go run mksyscall.go -l32 -openbsd -arm -tags openbsd,arm syscall_bsd.go syscall_openbsd.go syscall_openbsd_arm.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build openbsd,arm
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go | vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go | // cgo -godefs types_freebsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,freebsd
package unix
const (
SizeofPtr = 0x4
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x4
SizeofLongLong = 0x8
)
type (
_C_short int16
_C_int i... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go | vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,darwin
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_CCITT = 0xa... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go | vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,openbsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_BLUETOOTH = 0x... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go | vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go | // Code generated by linux/mkall.go generatePtracePair("mipsle", "mips64le"). DO NOT EDIT.
// +build linux
// +build mipsle mips64le
package unix
import "unsafe"
// PtraceRegsMipsle is the registers used by mipsle binaries.
type PtraceRegsMipsle struct {
Regs [32]uint64
Lo uint64
Hi uint64
Epc ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go | vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build mips64,linux
package unix
const (
SizeofPtr = 0x8
SizeofLong = 0x8
)
type (
_C_long int64
)
type Timespec struct {
Sec int64
Nsec int6... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go | vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,solaris
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_802 = 0x12
AF_APPLETALK = 0x10
AF_C... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go | vendor/golang.org/x/sys/unix/syscall_linux_s390x.go | // 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 s390x,linux
package unix
import (
"unsafe"
)
//sys dup2(oldfd int, newfd int) (err error)
//sysnb EpollCreate(size int) (fd int, err error)
//sys ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/dev_dragonfly.go | vendor/golang.org/x/sys/unix/dev_dragonfly.go | // Copyright 2017 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.
// Functions to access/create device major and minor numbers matching the
// encoding used in Dragonfly's sys/types.h header.
//
// The information below is ext... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go | vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go | // cgo -godefs types_netbsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,netbsd
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_short int16
_C_int i... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go | vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go | // mkerrors.sh -Wall -Werror -static -I/tmp/include
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build ppc64le,linux
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/_const.go
package unix
import "syscall"
const (
B1000000 ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_netbsd.go | vendor/golang.org/x/sys/unix/syscall_netbsd.go | // Copyright 2009,2010 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.
// NetBSD system calls.
// This file is compiled as ordinary Go code,
// but it is also input to mksyscall,
// which parses the //sys lines and generates s... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go | vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go | // Copyright 2018 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 linux,gccgo,386
package unix
import (
"syscall"
"unsafe"
)
func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
var newoffset in... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_linux.go | vendor/golang.org/x/sys/unix/zerrors_linux.go | // Code generated by mkmerge.go; DO NOT EDIT.
// +build linux
package unix
import "syscall"
const (
AAFS_MAGIC = 0x5a3c69f0
ADFS_SUPER_MAGIC = 0xadf5
AFFS_SUPER_MAGIC = 0xadff
AFS_FS_MAGIC = 0x6... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go | vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go | // Copyright 2019 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 arm64,openbsd
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: nsec}
}
func setTimeval(sec, usec int64) T... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go | vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,freebsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_ARP = 0x23
AF... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go | vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go | // Copyright 2019 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 arm64,netbsd
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: nsec}
}
func setTimeval(sec, usec int64) Ti... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_openbsd.go | vendor/golang.org/x/sys/unix/syscall_openbsd.go | // Copyright 2009,2010 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.
// OpenBSD system calls.
// This file is compiled as ordinary Go code,
// but it is also input to mksyscall,
// which parses the //sys lines and generates ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/cap_freebsd.go | vendor/golang.org/x/sys/unix/cap_freebsd.go | // Copyright 2017 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 freebsd
package unix
import (
"errors"
"fmt"
)
// Go implementation of C mostly found in /usr/src/sys/kern/subr_capability.c
const (
// This is... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_gc.go | vendor/golang.org/x/sys/unix/syscall_linux_gc.go | // Copyright 2018 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 linux,gc
package unix
// SyscallNoError may be used instead of Syscall for syscalls that don't fail.
func SyscallNoError(trap, a1, a2, a3 uintptr) (... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/unveil_openbsd.go | vendor/golang.org/x/sys/unix/unveil_openbsd.go | // Copyright 2018 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.
package unix
import (
"syscall"
"unsafe"
)
// Unveil implements the unveil syscall.
// For more information see unveil(2).
// Note that the special case of ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go | vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go | // Copyright 2009 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 linux
// +build ppc64 ppc64le
package unix
//sys dup2(oldfd int, newfd int) (err error)
//sysnb EpollCreate(size int) (fd int, err error)
//sys Epol... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/pledge_openbsd.go | vendor/golang.org/x/sys/unix/pledge_openbsd.go | // 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.
package unix
import (
"errors"
"fmt"
"strconv"
"syscall"
"unsafe"
)
// Pledge implements the pledge syscall.
//
// The pledge syscall does not accept exe... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go | vendor/golang.org/x/sys/unix/zptrace_x86_linux.go | // Code generated by linux/mkall.go generatePtracePair("386", "amd64"). DO NOT EDIT.
// +build linux
// +build 386 amd64
package unix
import "unsafe"
// PtraceRegs386 is the registers used by 386 binaries.
type PtraceRegs386 struct {
Ebx int32
Ecx int32
Edx int32
Esi int32
Edi int32
E... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go | vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go | // go run mksysctl_openbsd.go
// Code generated by the command above; DO NOT EDIT.
// +build 386,openbsd
package unix
type mibentry struct {
ctlname string
ctloid []_C_int
}
var sysctlMib = []mibentry{
{"ddb.console", []_C_int{9, 6}},
{"ddb.log", []_C_int{9, 7}},
{"ddb.max_line", []_C_int{9, 3}},
{"ddb.max_w... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go | vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go | // cgo -godefs types_openbsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,openbsd
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_short int16
_C_int ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go | vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go | // go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm,netbsd
package unix
const (
SYS_EXIT = 1 // { void|sys||exit(int rval); }
SYS_FORK = 2 // { int|sys... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/constants.go | vendor/golang.org/x/sys/unix/constants.go | // Copyright 2015 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 aix darwin dragonfly freebsd linux netbsd openbsd solaris
package unix
const (
R_OK = 0x4
W_OK = 0x2
X_OK = 0x1
)
| go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_linux.go | vendor/golang.org/x/sys/unix/ztypes_linux.go | // Code generated by mkmerge.go; DO NOT EDIT.
// +build linux
package unix
const (
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLongLong = 0x8
PathMax = 0x1000
)
type (
_C_short int16
_C_int int32
_C_long_long int64
)
type ItimerSpec struct {
Interval Timespec
Value Timespec
}
const (
TI... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go | vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go | // Copyright 2018 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 aix
// +build ppc64
package unix
//sysnb Getrlimit(resource int, rlim *Rlimit) (err error)
//sysnb Setrlimit(resource int, rlim *Rlimit) (err error)... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go | vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go | // go run mksyscall.go -l32 -arm -tags freebsd,arm syscall_bsd.go syscall_freebsd.go syscall_freebsd_arm.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build freebsd,arm
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP;... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go | vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go | // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,openbsd
package unix
const (
SYS_EXIT = 1 // { void sys_exit(int rval); }
SYS_FORK = 2 // { int sys_fork(... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go | vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go | // go run mksysctl_openbsd.go
// Code generated by the command above; DO NOT EDIT.
// +build arm,openbsd
package unix
type mibentry struct {
ctlname string
ctloid []_C_int
}
var sysctlMib = []mibentry{
{"ddb.console", []_C_int{9, 6}},
{"ddb.log", []_C_int{9, 7}},
{"ddb.max_line", []_C_int{9, 3}},
{"ddb.max_w... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go | vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go | // cgo -godefs -- -fsigned-char types_freebsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm,freebsd
package unix
const (
SizeofPtr = 0x4
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x4
SizeofLongLong = 0x8
)
type (
_C_short int1... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/race0.go | vendor/golang.org/x/sys/unix/race0.go | // Copyright 2012 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 aix darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly
package unix
import (
"unsafe"
)
const raceenabled = false
func raceA... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_dragonfly.go | vendor/golang.org/x/sys/unix/syscall_dragonfly.go | // Copyright 2009 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.
// DragonFly BSD system calls.
// This file is compiled as ordinary Go code,
// but it is also input to mksyscall,
// which parses the //sys lines and generates... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go | vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go | // go run mksyscall.go -netbsd -tags netbsd,arm64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build netbsd,arm64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP;... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go | vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm,linux
package unix
const (
SYS_RESTART_SYSCALL = 0
SYS_EXIT = 1
SYS_FORK = 2
SY... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/timestruct.go | vendor/golang.org/x/sys/unix/timestruct.go | // Copyright 2017 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 aix darwin dragonfly freebsd linux netbsd openbsd solaris
package unix
import "time"
// TimespecToNSec returns the time stored in ts as nanoseconds... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go | vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go | // go run mksysctl_openbsd.go
// Code generated by the command above; DO NOT EDIT.
// +build amd64,openbsd
package unix
type mibentry struct {
ctlname string
ctloid []_C_int
}
var sysctlMib = []mibentry{
{"ddb.console", []_C_int{9, 6}},
{"ddb.log", []_C_int{9, 7}},
{"ddb.max_line", []_C_int{9, 3}},
{"ddb.max... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go | vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go | // go run mksyscall.go -openbsd -tags openbsd,amd64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_amd64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build openbsd,amd64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go | vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go | // cgo -godefs types_openbsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,openbsd
package unix
const (
SizeofPtr = 0x4
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x4
SizeofLongLong = 0x8
)
type (
_C_short int16
_C_int i... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go | vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go | // cgo -godefs -- -fsigned-char types_freebsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,freebsd
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_short in... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go | vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go | // mkerrors.sh
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm,freebsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_ARP = 0x23
AF_ATM ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go | vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go | // Copyright 2009 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 sparc64,linux
package unix
//sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)
//sys Fadvise(fd int, offset int64, length in... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/bluetooth_linux.go | vendor/golang.org/x/sys/unix/bluetooth_linux.go | // 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.
// Bluetooth sockets and messages
package unix
// Bluetooth Protocols
const (
BTPROTO_L2CAP = 0
BTPROTO_HCI = 1
BTPROTO_SCO = 2
BTPROTO_RFCOMM = 3
... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go | vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go | // cgo -godefs -- -fsigned-char types_openbsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,openbsd
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_short in... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go | vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -fsigned-char /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build s390x,linux
package unix
const (
SYS_EXIT = 1
SYS_FORK = 2
SYS_READ = 3
SYS_... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/dev_netbsd.go | vendor/golang.org/x/sys/unix/dev_netbsd.go | // Copyright 2017 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.
// Functions to access/create device major and minor numbers matching the
// encoding used in NetBSD's sys/types.h header.
package unix
// Major returns the m... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go | vendor/golang.org/x/sys/unix/syscall_linux_amd64.go | // Copyright 2009 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 amd64,linux
package unix
//sys dup2(oldfd int, newfd int) (err error)
//sysnb EpollCreate(size int) (fd int, err error)
//sys EpollWait(epfd int, ev... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go | vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go | // cgo -godefs types_solaris.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,solaris
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
PathMax = 0x400
MaxHostNameLen = 0... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go | vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build arm64,netbsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_ARP = 0x1... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go | vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build ppc64le,linux
package unix
const (
SizeofPtr = 0x8
SizeofLong = 0x8
)
type (
_C_long int64
)
type Timespec struct {
Sec int64
Nsec int... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go | vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go | // mkerrors.sh -m32
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,freebsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m32 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_ARP = 0x23
AF_A... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go | vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build sparc64,linux
package unix
const (
SYS_RESTART_SYSCALL = 0
SYS_EXIT = 1
SYS_FORK = 2
SYS_READ ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_linux_386.go | vendor/golang.org/x/sys/unix/ztypes_linux_386.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include -m32 /build/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,linux
package unix
const (
SizeofPtr = 0x4
SizeofLong = 0x4
)
type (
_C_long int32
)
type Timespec struct {
Sec int32
Nsec in... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go | vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build mipsle,linux
package unix
const (
SizeofPtr = 0x4
SizeofLong = 0x4
)
type (
_C_long int32
)
type Timespec struct {
Sec int32
Nsec int3... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go | vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go | // go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,netbsd
package unix
const (
SYS_EXIT = 1 // { void|sys||exit(int rval); }
SYS_FORK = 2 // { int|sys... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go | vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go | // Copyright 2019 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.
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: nsec}
}
func setTimeval(sec, usec int64) Timeval {
return Timeval{... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go | vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go | // mkerrors.sh -m32
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,netbsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m32 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_ARP = 0x1c
... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ptrace_darwin.go | vendor/golang.org/x/sys/unix/ptrace_darwin.go | // Copyright 2020 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 darwin,!ios
package unix
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pid, addr, data)
}
| go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go | vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go | // go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,freebsd
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT = 1 // { void sys_e... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go | vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go | // go run mksyscall.go -tags linux,ppc64 syscall_linux.go syscall_linux_ppc64x.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build linux,ppc64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func fanotif... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go | vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go | // Copyright 2018 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 darwin,go1.12
package unix
import "unsafe"
// Implemented in the runtime package (runtime/sys_darwin.go)
func syscall_syscall(fn, a1, a2, a3 uintpt... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go | vendor/golang.org/x/sys/unix/syscall_linux_arm64.go | // Copyright 2015 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 arm64,linux
package unix
import "unsafe"
func EpollCreate(size int) (fd int, err error) {
if size <= 0 {
return -1, EINVAL
}
return EpollCreat... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/sockcmsg_unix.go | vendor/golang.org/x/sys/unix/sockcmsg_unix.go | // Copyright 2011 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 aix darwin dragonfly freebsd linux netbsd openbsd solaris
// Socket control messages
package unix
import (
"unsafe"
)
// CmsgLen returns the valu... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go | vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go | // cgo -godefs types_netbsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,netbsd
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_short int16
_C_int i... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go | vendor/golang.org/x/sys/unix/syscall_aix_ppc.go | // Copyright 2018 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 aix
// +build ppc
package unix
//sysnb Getrlimit(resource int, rlim *Rlimit) (err error) = getrlimit64
//sysnb Setrlimit(resource int, rlim *Rlimit)... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go | vendor/golang.org/x/sys/unix/syscall_netbsd_386.go | // Copyright 2009 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 386,netbsd
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: int32(nsec)}
}
func setTimeval(sec, usec int6... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go | vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go | // cgo -godefs types_darwin.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build amd64,darwin
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_short int16
_C_int i... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go | vendor/golang.org/x/sys/unix/syscall_darwin_arm.go | // Copyright 2015 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.
package unix
import "syscall"
func ptrace1(request int, pid int, addr uintptr, data uintptr) error {
return ENOTSUP
}
func setTimespec(sec, nsec int64) Time... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/dev_openbsd.go | vendor/golang.org/x/sys/unix/dev_openbsd.go | // Copyright 2017 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.
// Functions to access/create device major and minor numbers matching the
// encoding used in OpenBSD's sys/types.h header.
package unix
// Major returns the ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go | vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build riscv64,linux
package unix
const (
SizeofPtr = 0x8
SizeofLong = 0x8
)
type (
_C_long int64
)
type Timespec struct {
Sec int64
Nsec int... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go | vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go | // go run mksysctl_openbsd.go
// Code generated by the command above; DO NOT EDIT.
// +build arm64,openbsd
package unix
type mibentry struct {
ctlname string
ctloid []_C_int
}
var sysctlMib = []mibentry{
{"ddb.console", []_C_int{9, 6}},
{"ddb.log", []_C_int{9, 7}},
{"ddb.max_line", []_C_int{9, 3}},
{"ddb.max... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go | vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go | // Copyright 2014 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 linux,386 linux,arm linux,mips linux,mipsle
package unix
func init() {
// On 32-bit Linux systems, the fcntl syscall that matches Go's
// Flock_t ... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go | vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go | // go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build 386,freebsd
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT = 1 // { void sys_exi... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | true |
aojea/netkat | https://github.com/aojea/netkat/blob/0aff52e544e0df9b96fea261a4a9b96a36ad44f3/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go | vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go | // go run mksyscall.go -tags linux,riscv64 syscall_linux.go syscall_linux_riscv64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
// +build linux,riscv64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func fa... | go | Apache-2.0 | 0aff52e544e0df9b96fea261a4a9b96a36ad44f3 | 2026-01-07T09:45:51.064658Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.