kubernetes/vendor/github.com/prometheus/procfs/net_unix.go

const netUnixTypeStream

const netUnixTypeDgram

const netUnixTypeSeqpacket

const netUnixFlagDefault

const netUnixFlagListen

const netUnixStateUnconnected

const netUnixStateConnecting

const netUnixStateConnected

const netUnixStateDisconnected

type NetUNIXType

type NetUNIXFlags

type NetUNIXState

type NetUNIXLine

type NetUNIX

// NetUNIX returns data read from /proc/net/unix.
func (fs FS) NetUNIX() (*NetUNIX, error) {}

// readNetUNIX reads data in /proc/net/unix format from the specified file.
func readNetUNIX(file string) (*NetUNIX, error) {}

// parseNetUNIX creates a NetUnix structure from the incoming stream.
func parseNetUNIX(r io.Reader) (*NetUNIX, error) {}

func (u *NetUNIX) parseLine(line string, hasInode bool, min int) (*NetUNIXLine, error) {}

func (u NetUNIX) parseUsers(s string) (uint64, error) {}

func (u NetUNIX) parseType(s string) (NetUNIXType, error) {}

func (u NetUNIX) parseFlags(s string) (NetUNIXFlags, error) {}

func (u NetUNIX) parseState(s string) (NetUNIXState, error) {}

func (u NetUNIX) parseInode(s string) (uint64, error) {}

func (t NetUNIXType) String() string {}

func (f NetUNIXFlags) String() string {}

func (s NetUNIXState) String() string {}