mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1020 B
Go
58 lines
1020 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
//go:build ignore
|
|
|
|
// Hand writing: _Ctype_struct___3, 4
|
|
|
|
/*
|
|
Input to cgo -godefs.
|
|
|
|
*/
|
|
|
|
package net
|
|
|
|
/*
|
|
#include <sys/types.h>
|
|
#include <sys/socketvar.h>
|
|
#include <sys/proc_info.h>
|
|
#include <netinet/in_pcb.h>
|
|
|
|
enum {
|
|
sizeofPtr = sizeof(void*),
|
|
};
|
|
|
|
*/
|
|
import "C"
|
|
|
|
// Machine characteristics; for internal use.
|
|
|
|
const (
|
|
sizeofPtr = C.sizeofPtr
|
|
sizeofShort = C.sizeof_short
|
|
sizeofInt = C.sizeof_int
|
|
sizeofLong = C.sizeof_long
|
|
sizeofLongLong = C.sizeof_longlong
|
|
sizeofLongDouble = C.sizeof_longlong
|
|
)
|
|
|
|
// Basic types
|
|
|
|
type (
|
|
_C_short C.short
|
|
_C_int C.int
|
|
_C_long C.long
|
|
_C_long_long C.longlong
|
|
_C_long_double C.longlong
|
|
)
|
|
|
|
type (
|
|
Xinpgen C.struct_xinpgen
|
|
Inpcb C.struct_inpcb
|
|
in_addr C.struct_in_addr
|
|
Inpcb_list_entry C.struct__inpcb_list_entry
|
|
Xsocket C.struct_xsocket
|
|
Xsockbuf C.struct_xsockbuf
|
|
Xinpcb C.struct_xinpcb
|
|
)
|
|
|
|
// type u_quad_t C.struct_u_quad_t
|