Skip to content

OSSockOpt

[Source]

Convenience functions to fetch the option level and option name constants (arguments #2 and #3) for the getsockopt(2) and setsockopt(2) operating system calls.

The values of the option level and option name constants are typically C preprocessor macros, e.g., #define SOMETHING 42. These macro names are upper case and may contain multiple consecutive underscore characters (though this is rare, for example, IP_NAT__XXX). The function names in this primitive are derived by the C macro name and then:

  • converted to lower case
  • any double underscore (__) is converted to a single underscore (_).

These constants are not stable between Pony releases. Values returned by this function may be held by long-lived variables by the calling process: values cannot change while the process runs. Programmers must not cache any of these values for purposes of sharing them for use by any other Pony program (for example, sharing via serialization & deserialization or via direct shared memory).

Many functions may return -1, which means that the constant's value could not be determined at the Pony runtime library compile time. One cause may be that the option truly isn't available, for example, the option level constant IPPROTO_3PC is available on MacOS 10.x but not on Linux 4.4. Another cause may be the Pony runtime library's compilation did not include the correct header file(s) for the target OS platform.

A third cause of error is due to the regular expression-based approach used to harvest desirable constants. It is not fool-proof. The regexp used is too broad and finds some macros that are not supposed to be used with getsockopt(2) and setsockopt(2). Please consult your platform's documentation to verify the names of the option level and option name macros.

The following code fragments are equivalent: set the socket receive buffer size for the file descriptor fd to 4455.

/* In C */
int option_value = 4455;
setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &option_value, 4);

/* In Pony */
var option: I32 = 4455;
@setsockopt[I32](fd, OSSockOpt.sol_socket(), OSSockOpt.so_rcvbuf(),
  addressof option, I32(4))
primitive val OSSockOpt

Constructors

create

[Source]

new val create()
: OSSockOpt val^

Returns


Public Functions

ipproto_3pc

[Source]

fun box ipproto_3pc()
: I32 val

Returns


ipproto_adfs

[Source]

fun box ipproto_adfs()
: I32 val

Returns


ipproto_ah

[Source]

fun box ipproto_ah()
: I32 val

Returns


ipproto_ahip

[Source]

fun box ipproto_ahip()
: I32 val

Returns


ipproto_apes

[Source]

fun box ipproto_apes()
: I32 val

Returns


ipproto_argus

[Source]

fun box ipproto_argus()
: I32 val

Returns


ipproto_ax25

[Source]

fun box ipproto_ax25()
: I32 val

Returns


ipproto_beetph

[Source]

fun box ipproto_beetph()
: I32 val

Returns


ipproto_bha

[Source]

fun box ipproto_bha()
: I32 val

Returns


ipproto_blt

[Source]

fun box ipproto_blt()
: I32 val

Returns


ipproto_brsatmon

[Source]

fun box ipproto_brsatmon()
: I32 val

Returns


ipproto_carp

[Source]

fun box ipproto_carp()
: I32 val

Returns


ipproto_cftp

[Source]

fun box ipproto_cftp()
: I32 val

Returns


ipproto_chaos

[Source]

fun box ipproto_chaos()
: I32 val

Returns


ipproto_cmtp

[Source]

fun box ipproto_cmtp()
: I32 val

Returns


ipproto_comp

[Source]

fun box ipproto_comp()
: I32 val

Returns


ipproto_cphb

[Source]

fun box ipproto_cphb()
: I32 val

Returns


ipproto_cpnx

[Source]

fun box ipproto_cpnx()
: I32 val

Returns


ipproto_dccp

[Source]

fun box ipproto_dccp()
: I32 val

Returns


ipproto_ddp

[Source]

fun box ipproto_ddp()
: I32 val

Returns


ipproto_dgp

[Source]

fun box ipproto_dgp()
: I32 val

Returns


ipproto_divert

[Source]

fun box ipproto_divert()
: I32 val

Returns


ipproto_done

[Source]

fun box ipproto_done()
: I32 val

Returns


ipproto_dstopts

[Source]

fun box ipproto_dstopts()
: I32 val

Returns


ipproto_egp

[Source]

fun box ipproto_egp()
: I32 val

Returns


ipproto_emcon

[Source]

fun box ipproto_emcon()
: I32 val

Returns


ipproto_encap

[Source]

fun box ipproto_encap()
: I32 val

Returns


ipproto_eon

[Source]

fun box ipproto_eon()
: I32 val

Returns


ipproto_esp

[Source]

fun box ipproto_esp()
: I32 val

Returns


ipproto_etherip

[Source]

fun box ipproto_etherip()
: I32 val

Returns


ipproto_fragment

[Source]

fun box ipproto_fragment()
: I32 val

Returns


ipproto_ggp

[Source]

fun box ipproto_ggp()
: I32 val

Returns


ipproto_gmtp

[Source]

fun box ipproto_gmtp()
: I32 val

Returns


ipproto_gre

[Source]

fun box ipproto_gre()
: I32 val

Returns


ipproto_hello

[Source]

fun box ipproto_hello()
: I32 val

Returns


ipproto_hip

[Source]

fun box ipproto_hip()
: I32 val

Returns


ipproto_hmp

[Source]

fun box ipproto_hmp()
: I32 val

Returns


ipproto_hopopts

[Source]

fun box ipproto_hopopts()
: I32 val

Returns


ipproto_icmp

[Source]

fun box ipproto_icmp()
: I32 val

Returns


ipproto_icmpv6

[Source]

fun box ipproto_icmpv6()
: I32 val

Returns


ipproto_idp

[Source]

fun box ipproto_idp()
: I32 val

Returns


ipproto_idpr

[Source]

fun box ipproto_idpr()
: I32 val

Returns


ipproto_idrp

[Source]

fun box ipproto_idrp()
: I32 val

Returns


ipproto_igmp

[Source]

fun box ipproto_igmp()
: I32 val

Returns


ipproto_igp

[Source]

fun box ipproto_igp()
: I32 val

Returns


ipproto_igrp

[Source]

fun box ipproto_igrp()
: I32 val

Returns


ipproto_il

[Source]

fun box ipproto_il()
: I32 val

Returns


ipproto_inlsp

[Source]

fun box ipproto_inlsp()
: I32 val

Returns


ipproto_inp

[Source]

fun box ipproto_inp()
: I32 val

Returns


ipproto_ip

[Source]

fun box ipproto_ip()
: I32 val

Returns


ipproto_ipcomp

[Source]

fun box ipproto_ipcomp()
: I32 val

Returns


ipproto_ipcv

[Source]

fun box ipproto_ipcv()
: I32 val

Returns


ipproto_ipeip

[Source]

fun box ipproto_ipeip()
: I32 val

Returns


ipproto_ipip

[Source]

fun box ipproto_ipip()
: I32 val

Returns


ipproto_ippc

[Source]

fun box ipproto_ippc()
: I32 val

Returns


ipproto_ipv4

[Source]

fun box ipproto_ipv4()
: I32 val

Returns


ipproto_ipv6

[Source]

fun box ipproto_ipv6()
: I32 val

Returns


ipproto_irtp

[Source]

fun box ipproto_irtp()
: I32 val

Returns


ipproto_kryptolan

[Source]

fun box ipproto_kryptolan()
: I32 val

Returns


ipproto_larp

[Source]

fun box ipproto_larp()
: I32 val

Returns


ipproto_leaf1

[Source]

fun box ipproto_leaf1()
: I32 val

Returns


ipproto_leaf2

[Source]

fun box ipproto_leaf2()
: I32 val

Returns


ipproto_max

[Source]

fun box ipproto_max()
: I32 val

Returns


ipproto_maxid

[Source]

fun box ipproto_maxid()
: I32 val

Returns


ipproto_meas

[Source]

fun box ipproto_meas()
: I32 val

Returns


ipproto_mh

[Source]

fun box ipproto_mh()
: I32 val

Returns


ipproto_mhrp

[Source]

fun box ipproto_mhrp()
: I32 val

Returns


ipproto_micp

[Source]

fun box ipproto_micp()
: I32 val

Returns


ipproto_mobile

[Source]

fun box ipproto_mobile()
: I32 val

Returns


ipproto_mpls

[Source]

fun box ipproto_mpls()
: I32 val

Returns


ipproto_mtp

[Source]

fun box ipproto_mtp()
: I32 val

Returns


ipproto_mux

[Source]

fun box ipproto_mux()
: I32 val

Returns


ipproto_nd

[Source]

fun box ipproto_nd()
: I32 val

Returns


ipproto_nhrp

[Source]

fun box ipproto_nhrp()
: I32 val

Returns


ipproto_none

[Source]

fun box ipproto_none()
: I32 val

Returns


ipproto_nsp

[Source]

fun box ipproto_nsp()
: I32 val

Returns


ipproto_nvpii

[Source]

fun box ipproto_nvpii()
: I32 val

Returns


ipproto_old_divert

[Source]

fun box ipproto_old_divert()
: I32 val

Returns


ipproto_ospfigp

[Source]

fun box ipproto_ospfigp()
: I32 val

Returns


ipproto_pfsync

[Source]

fun box ipproto_pfsync()
: I32 val

Returns


ipproto_pgm

[Source]

fun box ipproto_pgm()
: I32 val

Returns


ipproto_pigp

[Source]

fun box ipproto_pigp()
: I32 val

Returns


ipproto_pim

[Source]

fun box ipproto_pim()
: I32 val

Returns


ipproto_prm

[Source]

fun box ipproto_prm()
: I32 val

Returns


ipproto_pup

[Source]

fun box ipproto_pup()
: I32 val

Returns


ipproto_pvp

[Source]

fun box ipproto_pvp()
: I32 val

Returns


ipproto_raw

[Source]

fun box ipproto_raw()
: I32 val

Returns


ipproto_rccmon

[Source]

fun box ipproto_rccmon()
: I32 val

Returns


ipproto_rdp

[Source]

fun box ipproto_rdp()
: I32 val

Returns


ipproto_reserved_253

[Source]

fun box ipproto_reserved_253()
: I32 val

Returns


ipproto_reserved_254

[Source]

fun box ipproto_reserved_254()
: I32 val

Returns


ipproto_routing

[Source]

fun box ipproto_routing()
: I32 val

Returns


ipproto_rsvp

[Source]

fun box ipproto_rsvp()
: I32 val

Returns


ipproto_rvd

[Source]

fun box ipproto_rvd()
: I32 val

Returns


ipproto_satexpak

[Source]

fun box ipproto_satexpak()
: I32 val

Returns


ipproto_satmon

[Source]

fun box ipproto_satmon()
: I32 val

Returns


ipproto_sccsp

[Source]

fun box ipproto_sccsp()
: I32 val

Returns


ipproto_sctp

[Source]

fun box ipproto_sctp()
: I32 val

Returns


ipproto_sdrp

[Source]

fun box ipproto_sdrp()
: I32 val

Returns


ipproto_send

[Source]

fun box ipproto_send()
: I32 val

Returns


ipproto_sep

[Source]

fun box ipproto_sep()
: I32 val

Returns


ipproto_shim6

[Source]

fun box ipproto_shim6()
: I32 val

Returns


ipproto_skip

[Source]

fun box ipproto_skip()
: I32 val

Returns


ipproto_spacer

[Source]

fun box ipproto_spacer()
: I32 val

Returns


ipproto_srpc

[Source]

fun box ipproto_srpc()
: I32 val

Returns


ipproto_st

[Source]

fun box ipproto_st()
: I32 val

Returns


ipproto_svmtp

[Source]

fun box ipproto_svmtp()
: I32 val

Returns


ipproto_swipe

[Source]

fun box ipproto_swipe()
: I32 val

Returns


ipproto_tcf

[Source]

fun box ipproto_tcf()
: I32 val

Returns


ipproto_tcp

[Source]

fun box ipproto_tcp()
: I32 val

Returns


ipproto_tlsp

[Source]

fun box ipproto_tlsp()
: I32 val

Returns


ipproto_tp

[Source]

fun box ipproto_tp()
: I32 val

Returns


ipproto_tpxx

[Source]

fun box ipproto_tpxx()
: I32 val

Returns


ipproto_trunk1

[Source]

fun box ipproto_trunk1()
: I32 val

Returns


ipproto_trunk2

[Source]

fun box ipproto_trunk2()
: I32 val

Returns


ipproto_ttp

[Source]

fun box ipproto_ttp()
: I32 val

Returns


ipproto_udp

[Source]

fun box ipproto_udp()
: I32 val

Returns


ipproto_udplite

[Source]

fun box ipproto_udplite()
: I32 val

Returns


ipproto_vines

[Source]

fun box ipproto_vines()
: I32 val

Returns


ipproto_visa

[Source]

fun box ipproto_visa()
: I32 val

Returns


ipproto_vmtp

[Source]

fun box ipproto_vmtp()
: I32 val

Returns


ipproto_wbexpak

[Source]

fun box ipproto_wbexpak()
: I32 val

Returns


ipproto_wbmon

[Source]

fun box ipproto_wbmon()
: I32 val

Returns


ipproto_wsn

[Source]

fun box ipproto_wsn()
: I32 val

Returns


ipproto_xnet

[Source]

fun box ipproto_xnet()
: I32 val

Returns


ipproto_xtp

[Source]

fun box ipproto_xtp()
: I32 val

Returns


sol_atalk

[Source]

fun box sol_atalk()
: I32 val

Returns


sol_ax25

[Source]

fun box sol_ax25()
: I32 val

Returns


sol_hci_raw

[Source]

fun box sol_hci_raw()
: I32 val

Returns


sol_ipx

[Source]

fun box sol_ipx()
: I32 val

Returns


sol_l2cap

[Source]

fun box sol_l2cap()
: I32 val

Returns


sol_local

[Source]

fun box sol_local()
: I32 val

Returns


sol_ndrvproto

[Source]

fun box sol_ndrvproto()
: I32 val

Returns


sol_netrom

[Source]

fun box sol_netrom()
: I32 val

Returns


sol_rds

[Source]

fun box sol_rds()
: I32 val

Returns


sol_rfcomm

[Source]

fun box sol_rfcomm()
: I32 val

Returns


sol_rose

[Source]

fun box sol_rose()
: I32 val

Returns


sol_sco

[Source]

fun box sol_sco()
: I32 val

Returns


sol_socket

[Source]

fun box sol_socket()
: I32 val

Returns


sol_tipc

[Source]

fun box sol_tipc()
: I32 val

Returns


sol_udp

[Source]

fun box sol_udp()
: I32 val

Returns


af_coip

[Source]

fun box af_coip()
: I32 val

Returns


af_inet

[Source]

fun box af_inet()
: I32 val

Returns


af_inet6

[Source]

fun box af_inet6()
: I32 val

Returns


bluetooth_proto_sco

[Source]

fun box bluetooth_proto_sco()
: I32 val

Returns


dccp_nr_pkt_types

[Source]

fun box dccp_nr_pkt_types()
: I32 val

Returns


dccp_service_list_max_len

[Source]

fun box dccp_service_list_max_len()
: I32 val

Returns


dccp_single_opt_maxlen

[Source]

fun box dccp_single_opt_maxlen()
: I32 val

Returns


dccp_sockopt_available_ccids

[Source]

fun box dccp_sockopt_available_ccids()
: I32 val

Returns


dccp_sockopt_ccid

[Source]

fun box dccp_sockopt_ccid()
: I32 val

Returns


dccp_sockopt_ccid_rx_info

[Source]

fun box dccp_sockopt_ccid_rx_info()
: I32 val

Returns


dccp_sockopt_ccid_tx_info

[Source]

fun box dccp_sockopt_ccid_tx_info()
: I32 val

Returns


dccp_sockopt_change_l

[Source]

fun box dccp_sockopt_change_l()
: I32 val

Returns


dccp_sockopt_change_r

[Source]

fun box dccp_sockopt_change_r()
: I32 val

Returns


dccp_sockopt_get_cur_mps

[Source]

fun box dccp_sockopt_get_cur_mps()
: I32 val

Returns


dccp_sockopt_packet_size

[Source]

fun box dccp_sockopt_packet_size()
: I32 val

Returns


dccp_sockopt_qpolicy_id

[Source]

fun box dccp_sockopt_qpolicy_id()
: I32 val

Returns


dccp_sockopt_qpolicy_txqlen

[Source]

fun box dccp_sockopt_qpolicy_txqlen()
: I32 val

Returns


dccp_sockopt_recv_cscov

[Source]

fun box dccp_sockopt_recv_cscov()
: I32 val

Returns


dccp_sockopt_rx_ccid

[Source]

fun box dccp_sockopt_rx_ccid()
: I32 val

Returns


dccp_sockopt_send_cscov

[Source]

fun box dccp_sockopt_send_cscov()
: I32 val

Returns


dccp_sockopt_server_timewait

[Source]

fun box dccp_sockopt_server_timewait()
: I32 val

Returns


dccp_sockopt_service

[Source]

fun box dccp_sockopt_service()
: I32 val

Returns


dccp_sockopt_tx_ccid

[Source]

fun box dccp_sockopt_tx_ccid()
: I32 val

Returns


dso_acceptmode

[Source]

fun box dso_acceptmode()
: I32 val

Returns


dso_conaccept

[Source]

fun box dso_conaccept()
: I32 val

Returns


dso_conaccess

[Source]

fun box dso_conaccess()
: I32 val

Returns


dso_condata

[Source]

fun box dso_condata()
: I32 val

Returns


dso_conreject

[Source]

fun box dso_conreject()
: I32 val

Returns


dso_cork

[Source]

fun box dso_cork()
: I32 val

Returns


dso_disdata

[Source]

fun box dso_disdata()
: I32 val

Returns


dso_info

[Source]

fun box dso_info()
: I32 val

Returns


dso_linkinfo

[Source]

fun box dso_linkinfo()
: I32 val

Returns


dso_max

[Source]

fun box dso_max()
: I32 val

Returns


dso_maxwindow

[Source]

fun box dso_maxwindow()
: I32 val

Returns


dso_nodelay

[Source]

fun box dso_nodelay()
: I32 val

Returns


dso_seqpacket

[Source]

fun box dso_seqpacket()
: I32 val

Returns


dso_services

[Source]

fun box dso_services()
: I32 val

Returns


dso_stream

[Source]

fun box dso_stream()
: I32 val

Returns


icmp_address

[Source]

fun box icmp_address()
: I32 val

Returns


icmp_addressreply

[Source]

fun box icmp_addressreply()
: I32 val

Returns


icmp_dest_unreach

[Source]

fun box icmp_dest_unreach()
: I32 val

Returns


icmp_echo

[Source]

fun box icmp_echo()
: I32 val

Returns


icmp_echoreply

[Source]

fun box icmp_echoreply()
: I32 val

Returns


icmp_exc_fragtime

[Source]

fun box icmp_exc_fragtime()
: I32 val

Returns


icmp_exc_ttl

[Source]

fun box icmp_exc_ttl()
: I32 val

Returns


icmp_filter

[Source]

fun box icmp_filter()
: I32 val

Returns


icmp_frag_needed

[Source]

fun box icmp_frag_needed()
: I32 val

Returns


icmp_host_ano

[Source]

fun box icmp_host_ano()
: I32 val

Returns


icmp_host_isolated

[Source]

fun box icmp_host_isolated()
: I32 val

Returns


icmp_host_unknown

[Source]

fun box icmp_host_unknown()
: I32 val

Returns


icmp_host_unreach

[Source]

fun box icmp_host_unreach()
: I32 val

Returns


icmp_host_unr_tos

[Source]

fun box icmp_host_unr_tos()
: I32 val

Returns


icmp_info_reply

[Source]

fun box icmp_info_reply()
: I32 val

Returns


icmp_info_request

[Source]

fun box icmp_info_request()
: I32 val

Returns


icmp_net_ano

[Source]

fun box icmp_net_ano()
: I32 val

Returns


icmp_net_unknown

[Source]

fun box icmp_net_unknown()
: I32 val

Returns


icmp_net_unreach

[Source]

fun box icmp_net_unreach()
: I32 val

Returns


icmp_net_unr_tos

[Source]

fun box icmp_net_unr_tos()
: I32 val

Returns


icmp_parameterprob

[Source]

fun box icmp_parameterprob()
: I32 val

Returns


icmp_pkt_filtered

[Source]

fun box icmp_pkt_filtered()
: I32 val

Returns


icmp_port_unreach

[Source]

fun box icmp_port_unreach()
: I32 val

Returns


icmp_prec_cutoff

[Source]

fun box icmp_prec_cutoff()
: I32 val

Returns


icmp_prec_violation

[Source]

fun box icmp_prec_violation()
: I32 val

Returns


icmp_prot_unreach

[Source]

fun box icmp_prot_unreach()
: I32 val

Returns


icmp_redirect

[Source]

fun box icmp_redirect()
: I32 val

Returns


icmp_redir_host

[Source]

fun box icmp_redir_host()
: I32 val

Returns


icmp_redir_hosttos

[Source]

fun box icmp_redir_hosttos()
: I32 val

Returns


icmp_redir_net

[Source]

fun box icmp_redir_net()
: I32 val

Returns


icmp_redir_nettos

[Source]

fun box icmp_redir_nettos()
: I32 val

Returns


icmp_source_quench

[Source]

fun box icmp_source_quench()
: I32 val

Returns


icmp_sr_failed

[Source]

fun box icmp_sr_failed()
: I32 val

Returns


icmp_timestamp

[Source]

fun box icmp_timestamp()
: I32 val

Returns


icmp_timestampreply

[Source]

fun box icmp_timestampreply()
: I32 val

Returns


icmp_time_exceeded

[Source]

fun box icmp_time_exceeded()
: I32 val

Returns


ipctl_acceptsourceroute

[Source]

fun box ipctl_acceptsourceroute()
: I32 val

Returns


ipctl_defmtu

[Source]

fun box ipctl_defmtu()
: I32 val

Returns


ipctl_defttl

[Source]

fun box ipctl_defttl()
: I32 val

Returns


ipctl_directedbroadcast

[Source]

fun box ipctl_directedbroadcast()
: I32 val

Returns


ipctl_fastforwarding

[Source]

fun box ipctl_fastforwarding()
: I32 val

Returns


ipctl_forwarding

[Source]

fun box ipctl_forwarding()
: I32 val

Returns


ipctl_gif_ttl

[Source]

fun box ipctl_gif_ttl()
: I32 val

Returns


ipctl_intrdqdrops

[Source]

fun box ipctl_intrdqdrops()
: I32 val

Returns


ipctl_intrdqmaxlen

[Source]

fun box ipctl_intrdqmaxlen()
: I32 val

Returns


ipctl_intrqdrops

[Source]

fun box ipctl_intrqdrops()
: I32 val

Returns


ipctl_intrqmaxlen

[Source]

fun box ipctl_intrqmaxlen()
: I32 val

Returns


ipctl_keepfaith

[Source]

fun box ipctl_keepfaith()
: I32 val

Returns


ipctl_maxid

[Source]

fun box ipctl_maxid()
: I32 val

Returns


ipctl_rtexpire

[Source]

fun box ipctl_rtexpire()
: I32 val

Returns


ipctl_rtmaxcache

[Source]

fun box ipctl_rtmaxcache()
: I32 val

Returns


ipctl_rtminexpire

[Source]

fun box ipctl_rtminexpire()
: I32 val

Returns


ipctl_sendredirects

[Source]

fun box ipctl_sendredirects()
: I32 val

Returns


ipctl_sourceroute

[Source]

fun box ipctl_sourceroute()
: I32 val

Returns


ipctl_stats

[Source]

fun box ipctl_stats()
: I32 val

Returns


ipport_ephemeralfirst

[Source]

fun box ipport_ephemeralfirst()
: I32 val

Returns


ipport_ephemerallast

[Source]

fun box ipport_ephemerallast()
: I32 val

Returns


ipport_hifirstauto

[Source]

fun box ipport_hifirstauto()
: I32 val

Returns


ipport_hilastauto

[Source]

fun box ipport_hilastauto()
: I32 val

Returns


ipport_max

[Source]

fun box ipport_max()
: I32 val

Returns


ipport_reserved

[Source]

fun box ipport_reserved()
: I32 val

Returns


ipport_reservedstart

[Source]

fun box ipport_reservedstart()
: I32 val

Returns


ipport_userreserved

[Source]

fun box ipport_userreserved()
: I32 val

Returns


ipv6_2292dstopts

[Source]

fun box ipv6_2292dstopts()
: I32 val

Returns


ipv6_2292hoplimit

[Source]

fun box ipv6_2292hoplimit()
: I32 val

Returns


ipv6_2292hopopts

[Source]

fun box ipv6_2292hopopts()
: I32 val

Returns


ipv6_2292pktinfo

[Source]

fun box ipv6_2292pktinfo()
: I32 val

Returns


ipv6_2292pktoptions

[Source]

fun box ipv6_2292pktoptions()
: I32 val

Returns


ipv6_2292rthdr

[Source]

fun box ipv6_2292rthdr()
: I32 val

Returns


ipv6_addrform

[Source]

fun box ipv6_addrform()
: I32 val

Returns


ipv6_addr_preferences

[Source]

fun box ipv6_addr_preferences()
: I32 val

Returns


ipv6_add_membership

[Source]

fun box ipv6_add_membership()
: I32 val

Returns


ipv6_authhdr

[Source]

fun box ipv6_authhdr()
: I32 val

Returns


ipv6_autoflowlabel

[Source]

fun box ipv6_autoflowlabel()
: I32 val

Returns


ipv6_checksum

[Source]

fun box ipv6_checksum()
: I32 val

Returns


ipv6_dontfrag

[Source]

fun box ipv6_dontfrag()
: I32 val

Returns


ipv6_drop_membership

[Source]

fun box ipv6_drop_membership()
: I32 val

Returns


ipv6_dstopts

[Source]

fun box ipv6_dstopts()
: I32 val

Returns


ipv6_flowinfo

[Source]

fun box ipv6_flowinfo()
: I32 val

Returns


ipv6_flowinfo_flowlabel

[Source]

fun box ipv6_flowinfo_flowlabel()
: I32 val

Returns


ipv6_flowinfo_priority

[Source]

fun box ipv6_flowinfo_priority()
: I32 val

Returns


ipv6_flowinfo_send

[Source]

fun box ipv6_flowinfo_send()
: I32 val

Returns


ipv6_flowlabel_mgr

[Source]

fun box ipv6_flowlabel_mgr()
: I32 val

Returns


ipv6_fl_a_get

[Source]

fun box ipv6_fl_a_get()
: I32 val

Returns


ipv6_fl_a_put

[Source]

fun box ipv6_fl_a_put()
: I32 val

Returns


ipv6_fl_a_renew

[Source]

fun box ipv6_fl_a_renew()
: I32 val

Returns


ipv6_fl_f_create

[Source]

fun box ipv6_fl_f_create()
: I32 val

Returns


ipv6_fl_f_excl

[Source]

fun box ipv6_fl_f_excl()
: I32 val

Returns


ipv6_fl_f_reflect

[Source]

fun box ipv6_fl_f_reflect()
: I32 val

Returns


ipv6_fl_f_remote

[Source]

fun box ipv6_fl_f_remote()
: I32 val

Returns


ipv6_fl_s_any

[Source]

fun box ipv6_fl_s_any()
: I32 val

Returns


ipv6_fl_s_excl

[Source]

fun box ipv6_fl_s_excl()
: I32 val

Returns


ipv6_fl_s_none

[Source]

fun box ipv6_fl_s_none()
: I32 val

Returns


ipv6_fl_s_process

[Source]

fun box ipv6_fl_s_process()
: I32 val

Returns


ipv6_fl_s_user

[Source]

fun box ipv6_fl_s_user()
: I32 val

Returns


ipv6_hoplimit

[Source]

fun box ipv6_hoplimit()
: I32 val

Returns


ipv6_hopopts

[Source]

fun box ipv6_hopopts()
: I32 val

Returns


ipv6_ipsec_policy

[Source]

fun box ipv6_ipsec_policy()
: I32 val

Returns


ipv6_join_anycast

[Source]

fun box ipv6_join_anycast()
: I32 val

Returns


ipv6_leave_anycast

[Source]

fun box ipv6_leave_anycast()
: I32 val

Returns


ipv6_minhopcount

[Source]

fun box ipv6_minhopcount()
: I32 val

Returns


ipv6_mtu

[Source]

fun box ipv6_mtu()
: I32 val

Returns


ipv6_mtu_discover

[Source]

fun box ipv6_mtu_discover()
: I32 val

Returns


ipv6_multicast_hops

[Source]

fun box ipv6_multicast_hops()
: I32 val

Returns


ipv6_multicast_if

[Source]

fun box ipv6_multicast_if()
: I32 val

Returns


ipv6_multicast_loop

[Source]

fun box ipv6_multicast_loop()
: I32 val

Returns


ipv6_nexthop

[Source]

fun box ipv6_nexthop()
: I32 val

Returns


ipv6_origdstaddr

[Source]

fun box ipv6_origdstaddr()
: I32 val

Returns


ipv6_pathmtu

[Source]

fun box ipv6_pathmtu()
: I32 val

Returns


ipv6_pktinfo

[Source]

fun box ipv6_pktinfo()
: I32 val

Returns


ipv6_pmtudisc_do

[Source]

fun box ipv6_pmtudisc_do()
: I32 val

Returns


ipv6_pmtudisc_dont

[Source]

fun box ipv6_pmtudisc_dont()
: I32 val

Returns


ipv6_pmtudisc_interface

[Source]

fun box ipv6_pmtudisc_interface()
: I32 val

Returns


ipv6_pmtudisc_omit

[Source]

fun box ipv6_pmtudisc_omit()
: I32 val

Returns


ipv6_pmtudisc_probe

[Source]

fun box ipv6_pmtudisc_probe()
: I32 val

Returns


ipv6_pmtudisc_want

[Source]

fun box ipv6_pmtudisc_want()
: I32 val

Returns


ipv6_prefer_src_cga

[Source]

fun box ipv6_prefer_src_cga()
: I32 val

Returns


ipv6_prefer_src_coa

[Source]

fun box ipv6_prefer_src_coa()
: I32 val

Returns


ipv6_prefer_src_home

[Source]

fun box ipv6_prefer_src_home()
: I32 val

Returns


ipv6_prefer_src_noncga

[Source]

fun box ipv6_prefer_src_noncga()
: I32 val

Returns


ipv6_prefer_src_public

[Source]

fun box ipv6_prefer_src_public()
: I32 val

Returns


ipv6_prefer_src_pubtmp_default

[Source]

fun box ipv6_prefer_src_pubtmp_default()
: I32 val

Returns


ipv6_prefer_src_tmp

[Source]

fun box ipv6_prefer_src_tmp()
: I32 val

Returns


ipv6_priority_10

[Source]

fun box ipv6_priority_10()
: I32 val

Returns


ipv6_priority_11

[Source]

fun box ipv6_priority_11()
: I32 val

Returns


ipv6_priority_12

[Source]

fun box ipv6_priority_12()
: I32 val

Returns


ipv6_priority_13

[Source]

fun box ipv6_priority_13()
: I32 val

Returns


ipv6_priority_14

[Source]

fun box ipv6_priority_14()
: I32 val

Returns


ipv6_priority_15

[Source]

fun box ipv6_priority_15()
: I32 val

Returns


ipv6_priority_8

[Source]

fun box ipv6_priority_8()
: I32 val

Returns


ipv6_priority_9

[Source]

fun box ipv6_priority_9()
: I32 val

Returns


ipv6_priority_bulk

[Source]

fun box ipv6_priority_bulk()
: I32 val

Returns


ipv6_priority_control

[Source]

fun box ipv6_priority_control()
: I32 val

Returns


ipv6_priority_filler

[Source]

fun box ipv6_priority_filler()
: I32 val

Returns


ipv6_priority_interactive

[Source]

fun box ipv6_priority_interactive()
: I32 val

Returns


ipv6_priority_reserved1

[Source]

fun box ipv6_priority_reserved1()
: I32 val

Returns


ipv6_priority_reserved2

[Source]

fun box ipv6_priority_reserved2()
: I32 val

Returns


ipv6_priority_unattended

[Source]

fun box ipv6_priority_unattended()
: I32 val

Returns


ipv6_priority_uncharacterized

[Source]

fun box ipv6_priority_uncharacterized()
: I32 val

Returns


ipv6_recvdstopts

[Source]

fun box ipv6_recvdstopts()
: I32 val

Returns


ipv6_recverr

[Source]

fun box ipv6_recverr()
: I32 val

Returns


ipv6_recvhoplimit

[Source]

fun box ipv6_recvhoplimit()
: I32 val

Returns


ipv6_recvhopopts

[Source]

fun box ipv6_recvhopopts()
: I32 val

Returns


ipv6_recvorigdstaddr

[Source]

fun box ipv6_recvorigdstaddr()
: I32 val

Returns


ipv6_recvpathmtu

[Source]

fun box ipv6_recvpathmtu()
: I32 val

Returns


ipv6_recvpktinfo

[Source]

fun box ipv6_recvpktinfo()
: I32 val

Returns


ipv6_recvrthdr

[Source]

fun box ipv6_recvrthdr()
: I32 val

Returns


ipv6_recvtclass

[Source]

fun box ipv6_recvtclass()
: I32 val

Returns


ipv6_router_alert

[Source]

fun box ipv6_router_alert()
: I32 val

Returns


ipv6_rthdr

[Source]

fun box ipv6_rthdr()
: I32 val

Returns


ipv6_rthdrdstopts

[Source]

fun box ipv6_rthdrdstopts()
: I32 val

Returns


ipv6_tclass

[Source]

fun box ipv6_tclass()
: I32 val

Returns


ipv6_tlv_hao

[Source]

fun box ipv6_tlv_hao()
: I32 val

Returns


ipv6_tlv_jumbo

[Source]

fun box ipv6_tlv_jumbo()
: I32 val

Returns


ipv6_tlv_pad1

[Source]

fun box ipv6_tlv_pad1()
: I32 val

Returns


ipv6_tlv_padn

[Source]

fun box ipv6_tlv_padn()
: I32 val

Returns


ipv6_tlv_routeralert

[Source]

fun box ipv6_tlv_routeralert()
: I32 val

Returns


ipv6_transparent

[Source]

fun box ipv6_transparent()
: I32 val

Returns


ipv6_unicast_hops

[Source]

fun box ipv6_unicast_hops()
: I32 val

Returns


ipv6_unicast_if

[Source]

fun box ipv6_unicast_if()
: I32 val

Returns


ipv6_use_min_mtu

[Source]

fun box ipv6_use_min_mtu()
: I32 val

Returns


ipv6_v6only

[Source]

fun box ipv6_v6only()
: I32 val

Returns


ipv6_xfrm_policy

[Source]

fun box ipv6_xfrm_policy()
: I32 val

Returns


ipx_address

[Source]

fun box ipx_address()
: I32 val

Returns


ipx_address_notify

[Source]

fun box ipx_address_notify()
: I32 val

Returns


ipx_crtitf

[Source]

fun box ipx_crtitf()
: I32 val

Returns


ipx_dltitf

[Source]

fun box ipx_dltitf()
: I32 val

Returns


ipx_dstype

[Source]

fun box ipx_dstype()
: I32 val

Returns


ipx_extended_address

[Source]

fun box ipx_extended_address()
: I32 val

Returns


ipx_filterptype

[Source]

fun box ipx_filterptype()
: I32 val

Returns


ipx_frame_8022

[Source]

fun box ipx_frame_8022()
: I32 val

Returns


ipx_frame_8023

[Source]

fun box ipx_frame_8023()
: I32 val

Returns


ipx_frame_etherii

[Source]

fun box ipx_frame_etherii()
: I32 val

Returns


ipx_frame_none

[Source]

fun box ipx_frame_none()
: I32 val

Returns


ipx_frame_snap

[Source]

fun box ipx_frame_snap()
: I32 val

Returns


ipx_frame_tr_8022

[Source]

fun box ipx_frame_tr_8022()
: I32 val

Returns


ipx_getnetinfo

[Source]

fun box ipx_getnetinfo()
: I32 val

Returns


ipx_getnetinfo_norip

[Source]

fun box ipx_getnetinfo_norip()
: I32 val

Returns


ipx_immediatespxack

[Source]

fun box ipx_immediatespxack()
: I32 val

Returns


ipx_internal

[Source]

fun box ipx_internal()
: I32 val

Returns


ipx_maxsize

[Source]

fun box ipx_maxsize()
: I32 val

Returns


ipx_max_adapter_num

[Source]

fun box ipx_max_adapter_num()
: I32 val

Returns


ipx_mtu

[Source]

fun box ipx_mtu()
: I32 val

Returns


ipx_node_len

[Source]

fun box ipx_node_len()
: I32 val

Returns


ipx_primary

[Source]

fun box ipx_primary()
: I32 val

Returns


ipx_ptype

[Source]

fun box ipx_ptype()
: I32 val

Returns


ipx_receive_broadcast

[Source]

fun box ipx_receive_broadcast()
: I32 val

Returns


ipx_recvhdr

[Source]

fun box ipx_recvhdr()
: I32 val

Returns


ipx_reripnetnumber

[Source]

fun box ipx_reripnetnumber()
: I32 val

Returns


ipx_route_no_router

[Source]

fun box ipx_route_no_router()
: I32 val

Returns


ipx_rt_8022

[Source]

fun box ipx_rt_8022()
: I32 val

Returns


ipx_rt_bluebook

[Source]

fun box ipx_rt_bluebook()
: I32 val

Returns


ipx_rt_routed

[Source]

fun box ipx_rt_routed()
: I32 val

Returns


ipx_rt_snap

[Source]

fun box ipx_rt_snap()
: I32 val

Returns


ipx_special_none

[Source]

fun box ipx_special_none()
: I32 val

Returns


ipx_spxgetconnectionstatus

[Source]

fun box ipx_spxgetconnectionstatus()
: I32 val

Returns


ipx_stopfilterptype

[Source]

fun box ipx_stopfilterptype()
: I32 val

Returns


ipx_type

[Source]

fun box ipx_type()
: I32 val

Returns


ip_add_membership

[Source]

fun box ip_add_membership()
: I32 val

Returns


ip_add_source_membership

[Source]

fun box ip_add_source_membership()
: I32 val

Returns


ip_bindany

[Source]

fun box ip_bindany()
: I32 val

Returns


ip_bindmulti

[Source]

fun box ip_bindmulti()
: I32 val

Returns


ip_bind_address_no_port

[Source]

fun box ip_bind_address_no_port()
: I32 val

Returns


ip_block_source

[Source]

fun box ip_block_source()
: I32 val

Returns


ip_bound_if

[Source]

fun box ip_bound_if()
: I32 val

Returns


ip_checksum

[Source]

fun box ip_checksum()
: I32 val

Returns


ip_default_multicast_loop

[Source]

fun box ip_default_multicast_loop()
: I32 val

Returns


ip_default_multicast_ttl

[Source]

fun box ip_default_multicast_ttl()
: I32 val

Returns


ip_dontfrag

[Source]

fun box ip_dontfrag()
: I32 val

Returns


ip_drop_membership

[Source]

fun box ip_drop_membership()
: I32 val

Returns


ip_drop_source_membership

[Source]

fun box ip_drop_source_membership()
: I32 val

Returns


ip_dummynet3

[Source]

fun box ip_dummynet3()
: I32 val

Returns


ip_dummynet_configure

[Source]

fun box ip_dummynet_configure()
: I32 val

Returns


ip_dummynet_del

[Source]

fun box ip_dummynet_del()
: I32 val

Returns


ip_dummynet_flush

[Source]

fun box ip_dummynet_flush()
: I32 val

Returns


ip_dummynet_get

[Source]

fun box ip_dummynet_get()
: I32 val

Returns


ip_faith

[Source]

fun box ip_faith()
: I32 val

Returns


ip_flowid

[Source]

fun box ip_flowid()
: I32 val

Returns


ip_flowtype

[Source]

fun box ip_flowtype()
: I32 val

Returns


ip_freebind

[Source]

fun box ip_freebind()
: I32 val

Returns


ip_fw3

[Source]

fun box ip_fw3()
: I32 val

Returns


ip_fw_add

[Source]

fun box ip_fw_add()
: I32 val

Returns


ip_fw_del

[Source]

fun box ip_fw_del()
: I32 val

Returns


ip_fw_flush

[Source]

fun box ip_fw_flush()
: I32 val

Returns


ip_fw_get

[Source]

fun box ip_fw_get()
: I32 val

Returns


ip_fw_nat_cfg

[Source]

fun box ip_fw_nat_cfg()
: I32 val

Returns


ip_fw_nat_del

[Source]

fun box ip_fw_nat_del()
: I32 val

Returns


ip_fw_nat_get_config

[Source]

fun box ip_fw_nat_get_config()
: I32 val

Returns


ip_fw_nat_get_log

[Source]

fun box ip_fw_nat_get_log()
: I32 val

Returns


ip_fw_resetlog

[Source]

fun box ip_fw_resetlog()
: I32 val

Returns


ip_fw_table_add

[Source]

fun box ip_fw_table_add()
: I32 val

Returns


ip_fw_table_del

[Source]

fun box ip_fw_table_del()
: I32 val

Returns


ip_fw_table_flush

[Source]

fun box ip_fw_table_flush()
: I32 val

Returns


ip_fw_table_getsize

[Source]

fun box ip_fw_table_getsize()
: I32 val

Returns


ip_fw_table_list

[Source]

fun box ip_fw_table_list()
: I32 val

Returns


ip_fw_zero

[Source]

fun box ip_fw_zero()
: I32 val

Returns


ip_hdrincl

[Source]

fun box ip_hdrincl()
: I32 val

Returns


ip_ipsec_policy

[Source]

fun box ip_ipsec_policy()
: I32 val

Returns


ip_max_group_src_filter

[Source]

fun box ip_max_group_src_filter()
: I32 val

Returns


ip_max_memberships

[Source]

fun box ip_max_memberships()
: I32 val

Returns


ip_max_sock_mute_filter

[Source]

fun box ip_max_sock_mute_filter()
: I32 val

Returns


ip_max_sock_src_filter

[Source]

fun box ip_max_sock_src_filter()
: I32 val

Returns


ip_max_source_filter

[Source]

fun box ip_max_source_filter()
: I32 val

Returns


ip_minttl

[Source]

fun box ip_minttl()
: I32 val

Returns


ip_min_memberships

[Source]

fun box ip_min_memberships()
: I32 val

Returns


ip_msfilter

[Source]

fun box ip_msfilter()
: I32 val

Returns


ip_mtu

[Source]

fun box ip_mtu()
: I32 val

Returns


ip_mtu_discover

[Source]

fun box ip_mtu_discover()
: I32 val

Returns


ip_multicast_all

[Source]

fun box ip_multicast_all()
: I32 val

Returns


ip_multicast_if

[Source]

fun box ip_multicast_if()
: I32 val

Returns


ip_multicast_ifindex

[Source]

fun box ip_multicast_ifindex()
: I32 val

Returns


ip_multicast_loop

[Source]

fun box ip_multicast_loop()
: I32 val

Returns


ip_multicast_ttl

[Source]

fun box ip_multicast_ttl()
: I32 val

Returns


ip_multicast_vif

[Source]

fun box ip_multicast_vif()
: I32 val

Returns


ip_nat_xxx

[Source]

fun box ip_nat_xxx()
: I32 val

Returns


ip_nodefrag

[Source]

fun box ip_nodefrag()
: I32 val

Returns


ip_old_fw_add

[Source]

fun box ip_old_fw_add()
: I32 val

Returns


ip_old_fw_del

[Source]

fun box ip_old_fw_del()
: I32 val

Returns


ip_old_fw_flush

[Source]

fun box ip_old_fw_flush()
: I32 val

Returns


ip_old_fw_get

[Source]

fun box ip_old_fw_get()
: I32 val

Returns


ip_old_fw_resetlog

[Source]

fun box ip_old_fw_resetlog()
: I32 val

Returns


ip_old_fw_zero

[Source]

fun box ip_old_fw_zero()
: I32 val

Returns


ip_onesbcast

[Source]

fun box ip_onesbcast()
: I32 val

Returns


ip_options

[Source]

fun box ip_options()
: I32 val

Returns


ip_origdstaddr

[Source]

fun box ip_origdstaddr()
: I32 val

Returns


ip_passsec

[Source]

fun box ip_passsec()
: I32 val

Returns


ip_pktinfo

[Source]

fun box ip_pktinfo()
: I32 val

Returns


ip_pktoptions

[Source]

fun box ip_pktoptions()
: I32 val

Returns


ip_pmtudisc_do

[Source]

fun box ip_pmtudisc_do()
: I32 val

Returns


ip_pmtudisc_dont

[Source]

fun box ip_pmtudisc_dont()
: I32 val

Returns


ip_pmtudisc_interface

[Source]

fun box ip_pmtudisc_interface()
: I32 val

Returns


ip_pmtudisc_omit

[Source]

fun box ip_pmtudisc_omit()
: I32 val

Returns


ip_pmtudisc_probe

[Source]

fun box ip_pmtudisc_probe()
: I32 val

Returns


ip_pmtudisc_want

[Source]

fun box ip_pmtudisc_want()
: I32 val

Returns


ip_portrange

[Source]

fun box ip_portrange()
: I32 val

Returns


ip_portrange_default

[Source]

fun box ip_portrange_default()
: I32 val

Returns


ip_portrange_high

[Source]

fun box ip_portrange_high()
: I32 val

Returns


ip_portrange_low

[Source]

fun box ip_portrange_low()
: I32 val

Returns


ip_recvdstaddr

[Source]

fun box ip_recvdstaddr()
: I32 val

Returns


ip_recverr

[Source]

fun box ip_recverr()
: I32 val

Returns


ip_recvflowid

[Source]

fun box ip_recvflowid()
: I32 val

Returns


ip_recvif

[Source]

fun box ip_recvif()
: I32 val

Returns


ip_recvopts

[Source]

fun box ip_recvopts()
: I32 val

Returns


ip_recvorigdstaddr

[Source]

fun box ip_recvorigdstaddr()
: I32 val

Returns


ip_recvpktinfo

[Source]

fun box ip_recvpktinfo()
: I32 val

Returns


ip_recvretopts

[Source]

fun box ip_recvretopts()
: I32 val

Returns


ip_recvrssbucketid

[Source]

fun box ip_recvrssbucketid()
: I32 val

Returns


ip_recvtos

[Source]

fun box ip_recvtos()
: I32 val

Returns


ip_recvttl

[Source]

fun box ip_recvttl()
: I32 val

Returns


ip_retopts

[Source]

fun box ip_retopts()
: I32 val

Returns


ip_router_alert

[Source]

fun box ip_router_alert()
: I32 val

Returns


ip_rssbucketid

[Source]

fun box ip_rssbucketid()
: I32 val

Returns


ip_rss_listen_bucket

[Source]

fun box ip_rss_listen_bucket()
: I32 val

Returns


ip_rsvp_off

[Source]

fun box ip_rsvp_off()
: I32 val

Returns


ip_rsvp_on

[Source]

fun box ip_rsvp_on()
: I32 val

Returns


ip_rsvp_vif_off

[Source]

fun box ip_rsvp_vif_off()
: I32 val

Returns


ip_rsvp_vif_on

[Source]

fun box ip_rsvp_vif_on()
: I32 val

Returns


ip_sendsrcaddr

[Source]

fun box ip_sendsrcaddr()
: I32 val

Returns


ip_striphdr

[Source]

fun box ip_striphdr()
: I32 val

Returns


ip_tos

[Source]

fun box ip_tos()
: I32 val

Returns


ip_traffic_mgt_background

[Source]

fun box ip_traffic_mgt_background()
: I32 val

Returns


ip_transparent

[Source]

fun box ip_transparent()
: I32 val

Returns


ip_ttl

[Source]

fun box ip_ttl()
: I32 val

Returns


ip_unblock_source

[Source]

fun box ip_unblock_source()
: I32 val

Returns


ip_unicast_if

[Source]

fun box ip_unicast_if()
: I32 val

Returns


ip_xfrm_policy

[Source]

fun box ip_xfrm_policy()
: I32 val

Returns


local_connwait

[Source]

fun box local_connwait()
: I32 val

Returns


local_creds

[Source]

fun box local_creds()
: I32 val

Returns


local_peercred

[Source]

fun box local_peercred()
: I32 val

Returns


local_peerepid

[Source]

fun box local_peerepid()
: I32 val

Returns


local_peereuuid

[Source]

fun box local_peereuuid()
: I32 val

Returns


local_peerpid

[Source]

fun box local_peerpid()
: I32 val

Returns


local_peeruuid

[Source]

fun box local_peeruuid()
: I32 val

Returns


local_vendor

[Source]

fun box local_vendor()
: I32 val

Returns


max_tcpoptlen

[Source]

fun box max_tcpoptlen()
: I32 val

Returns


mcast_block_source

[Source]

fun box mcast_block_source()
: I32 val

Returns


mcast_exclude

[Source]

fun box mcast_exclude()
: I32 val

Returns


mcast_include

[Source]

fun box mcast_include()
: I32 val

Returns


mcast_join_group

[Source]

fun box mcast_join_group()
: I32 val

Returns


mcast_join_source_group

[Source]

fun box mcast_join_source_group()
: I32 val

Returns


mcast_leave_group

[Source]

fun box mcast_leave_group()
: I32 val

Returns


mcast_leave_source_group

[Source]

fun box mcast_leave_source_group()
: I32 val

Returns


mcast_msfilter

[Source]

fun box mcast_msfilter()
: I32 val

Returns


mcast_unblock_source

[Source]

fun box mcast_unblock_source()
: I32 val

Returns


mcast_undefined

[Source]

fun box mcast_undefined()
: I32 val

Returns


mrt_add_bw_upcall

[Source]

fun box mrt_add_bw_upcall()
: I32 val

Returns


mrt_add_mfc

[Source]

fun box mrt_add_mfc()
: I32 val

Returns


mrt_add_vif

[Source]

fun box mrt_add_vif()
: I32 val

Returns


mrt_api_config

[Source]

fun box mrt_api_config()
: I32 val

Returns


mrt_api_flags_all

[Source]

fun box mrt_api_flags_all()
: I32 val

Returns


mrt_api_support

[Source]

fun box mrt_api_support()
: I32 val

Returns


mrt_assert

[Source]

fun box mrt_assert()
: I32 val

Returns


mrt_del_bw_upcall

[Source]

fun box mrt_del_bw_upcall()
: I32 val

Returns


mrt_del_mfc

[Source]

fun box mrt_del_mfc()
: I32 val

Returns


mrt_del_vif

[Source]

fun box mrt_del_vif()
: I32 val

Returns


mrt_done

[Source]

fun box mrt_done()
: I32 val

Returns


mrt_init

[Source]

fun box mrt_init()
: I32 val

Returns


mrt_mfc_bw_upcall

[Source]

fun box mrt_mfc_bw_upcall()
: I32 val

Returns


mrt_mfc_flags_all

[Source]

fun box mrt_mfc_flags_all()
: I32 val

Returns


mrt_mfc_flags_border_vif

[Source]

fun box mrt_mfc_flags_border_vif()
: I32 val

Returns


mrt_mfc_flags_disable_wrongvif

[Source]

fun box mrt_mfc_flags_disable_wrongvif()
: I32 val

Returns


mrt_mfc_rp

[Source]

fun box mrt_mfc_rp()
: I32 val

Returns


mrt_pim

[Source]

fun box mrt_pim()
: I32 val

Returns


mrt_version

[Source]

fun box mrt_version()
: I32 val

Returns


msg_notification

[Source]

fun box msg_notification()
: I32 val

Returns


msg_socallbck

[Source]

fun box msg_socallbck()
: I32 val

Returns


ndrvproto_ndrv

[Source]

fun box ndrvproto_ndrv()
: I32 val

Returns


ndrv_addmulticast

[Source]

fun box ndrv_addmulticast()
: I32 val

Returns


ndrv_deldmxspec

[Source]

fun box ndrv_deldmxspec()
: I32 val

Returns


ndrv_delmulticast

[Source]

fun box ndrv_delmulticast()
: I32 val

Returns


ndrv_demuxtype_ethertype

[Source]

fun box ndrv_demuxtype_ethertype()
: I32 val

Returns


ndrv_demuxtype_sap

[Source]

fun box ndrv_demuxtype_sap()
: I32 val

Returns


ndrv_demuxtype_snap

[Source]

fun box ndrv_demuxtype_snap()
: I32 val

Returns


ndrv_dmux_max_descr

[Source]

fun box ndrv_dmux_max_descr()
: I32 val

Returns


ndrv_protocol_desc_vers

[Source]

fun box ndrv_protocol_desc_vers()
: I32 val

Returns


ndrv_setdmxspec

[Source]

fun box ndrv_setdmxspec()
: I32 val

Returns


[Source]

fun box netlink_add_membership()
: I32 val

Returns


[Source]

fun box netlink_audit()
: I32 val

Returns


[Source]

fun box netlink_broadcast_error()
: I32 val

Returns


[Source]

fun box netlink_cap_ack()
: I32 val

Returns


[Source]

fun box netlink_connector()
: I32 val

Returns


[Source]

fun box netlink_crypto()
: I32 val

Returns


[Source]

fun box netlink_dnrtmsg()
: I32 val

Returns


[Source]

fun box netlink_drop_membership()
: I32 val

Returns


[Source]

fun box netlink_ecryptfs()
: I32 val

Returns


[Source]

fun box netlink_fib_lookup()
: I32 val

Returns


[Source]

fun box netlink_firewall()
: I32 val

Returns


[Source]

fun box netlink_generic()
: I32 val

Returns


[Source]

fun box netlink_inet_diag()
: I32 val

Returns


[Source]

fun box netlink_ip6_fw()
: I32 val

Returns


[Source]

fun box netlink_iscsi()
: I32 val

Returns


[Source]

fun box netlink_kobject_uevent()
: I32 val

Returns


[Source]

fun box netlink_listen_all_nsid()
: I32 val

Returns


[Source]

fun box netlink_list_memberships()
: I32 val

Returns


[Source]

fun box netlink_netfilter()
: I32 val

Returns


[Source]

fun box netlink_nflog()
: I32 val

Returns


[Source]

fun box netlink_no_enobufs()
: I32 val

Returns


[Source]

fun box netlink_pktinfo()
: I32 val

Returns


[Source]

fun box netlink_rdma()
: I32 val

Returns


[Source]

fun box netlink_route()
: I32 val

Returns


[Source]

fun box netlink_rx_ring()
: I32 val

Returns


[Source]

fun box netlink_scsitransport()
: I32 val

Returns


[Source]

fun box netlink_selinux()
: I32 val

Returns


[Source]

fun box netlink_sock_diag()
: I32 val

Returns


[Source]

fun box netlink_tx_ring()
: I32 val

Returns


[Source]

fun box netlink_unused()
: I32 val

Returns


[Source]

fun box netlink_usersock()
: I32 val

Returns


[Source]

fun box netlink_xfrm()
: I32 val

Returns


netrom_idle

[Source]

fun box netrom_idle()
: I32 val

Returns


netrom_kill

[Source]

fun box netrom_kill()
: I32 val

Returns


netrom_n2

[Source]

fun box netrom_n2()
: I32 val

Returns


netrom_neigh

[Source]

fun box netrom_neigh()
: I32 val

Returns


netrom_node

[Source]

fun box netrom_node()
: I32 val

Returns


netrom_paclen

[Source]

fun box netrom_paclen()
: I32 val

Returns


netrom_t1

[Source]

fun box netrom_t1()
: I32 val

Returns


netrom_t2

[Source]

fun box netrom_t2()
: I32 val

Returns


netrom_t4

[Source]

fun box netrom_t4()
: I32 val

Returns


nrdv_multicast_addrs_per_sock

[Source]

fun box nrdv_multicast_addrs_per_sock()
: I32 val

Returns


pvd_config

[Source]

fun box pvd_config()
: I32 val

Returns


rds_cancel_sent_to

[Source]

fun box rds_cancel_sent_to()
: I32 val

Returns


rds_cmsg_atomic_cswp

[Source]

fun box rds_cmsg_atomic_cswp()
: I32 val

Returns


rds_cmsg_atomic_fadd

[Source]

fun box rds_cmsg_atomic_fadd()
: I32 val

Returns


rds_cmsg_cong_update

[Source]

fun box rds_cmsg_cong_update()
: I32 val

Returns


rds_cmsg_masked_atomic_cswp

[Source]

fun box rds_cmsg_masked_atomic_cswp()
: I32 val

Returns


rds_cmsg_masked_atomic_fadd

[Source]

fun box rds_cmsg_masked_atomic_fadd()
: I32 val

Returns


rds_cmsg_rdma_args

[Source]

fun box rds_cmsg_rdma_args()
: I32 val

Returns


rds_cmsg_rdma_dest

[Source]

fun box rds_cmsg_rdma_dest()
: I32 val

Returns


rds_cmsg_rdma_map

[Source]

fun box rds_cmsg_rdma_map()
: I32 val

Returns


rds_cmsg_rdma_status

[Source]

fun box rds_cmsg_rdma_status()
: I32 val

Returns


rds_cong_monitor

[Source]

fun box rds_cong_monitor()
: I32 val

Returns


rds_cong_monitor_size

[Source]

fun box rds_cong_monitor_size()
: I32 val

Returns


rds_free_mr

[Source]

fun box rds_free_mr()
: I32 val

Returns


rds_get_mr

[Source]

fun box rds_get_mr()
: I32 val

Returns


rds_get_mr_for_dest

[Source]

fun box rds_get_mr_for_dest()
: I32 val

Returns


rds_ib_abi_version

[Source]

fun box rds_ib_abi_version()
: I32 val

Returns


rds_ib_gid_len

[Source]

fun box rds_ib_gid_len()
: I32 val

Returns


rds_info_connections

[Source]

fun box rds_info_connections()
: I32 val

Returns


rds_info_connection_flag_connected

[Source]

fun box rds_info_connection_flag_connected()
: I32 val

Returns


rds_info_connection_flag_connecting

[Source]

fun box rds_info_connection_flag_connecting()
: I32 val

Returns


rds_info_connection_flag_sending

[Source]

fun box rds_info_connection_flag_sending()
: I32 val

Returns


rds_info_connection_stats

[Source]

fun box rds_info_connection_stats()
: I32 val

Returns


rds_info_counters

[Source]

fun box rds_info_counters()
: I32 val

Returns


rds_info_first

[Source]

fun box rds_info_first()
: I32 val

Returns


rds_info_ib_connections

[Source]

fun box rds_info_ib_connections()
: I32 val

Returns


rds_info_iwarp_connections

[Source]

fun box rds_info_iwarp_connections()
: I32 val

Returns


rds_info_last

[Source]

fun box rds_info_last()
: I32 val

Returns


rds_info_message_flag_ack

[Source]

fun box rds_info_message_flag_ack()
: I32 val

Returns


rds_info_message_flag_fast_ack

[Source]

fun box rds_info_message_flag_fast_ack()
: I32 val

Returns


rds_info_recv_messages

[Source]

fun box rds_info_recv_messages()
: I32 val

Returns


rds_info_retrans_messages

[Source]

fun box rds_info_retrans_messages()
: I32 val

Returns


rds_info_send_messages

[Source]

fun box rds_info_send_messages()
: I32 val

Returns


rds_info_sockets

[Source]

fun box rds_info_sockets()
: I32 val

Returns


rds_info_tcp_sockets

[Source]

fun box rds_info_tcp_sockets()
: I32 val

Returns


rds_rdma_canceled

[Source]

fun box rds_rdma_canceled()
: I32 val

Returns


rds_rdma_dontwait

[Source]

fun box rds_rdma_dontwait()
: I32 val

Returns


rds_rdma_dropped

[Source]

fun box rds_rdma_dropped()
: I32 val

Returns


rds_rdma_fence

[Source]

fun box rds_rdma_fence()
: I32 val

Returns


rds_rdma_invalidate

[Source]

fun box rds_rdma_invalidate()
: I32 val

Returns


rds_rdma_notify_me

[Source]

fun box rds_rdma_notify_me()
: I32 val

Returns


rds_rdma_other_error

[Source]

fun box rds_rdma_other_error()
: I32 val

Returns


rds_rdma_readwrite

[Source]

fun box rds_rdma_readwrite()
: I32 val

Returns


rds_rdma_remote_error

[Source]

fun box rds_rdma_remote_error()
: I32 val

Returns


rds_rdma_silent

[Source]

fun box rds_rdma_silent()
: I32 val

Returns


rds_rdma_success

[Source]

fun box rds_rdma_success()
: I32 val

Returns


rds_rdma_use_once

[Source]

fun box rds_rdma_use_once()
: I32 val

Returns


rds_recverr

[Source]

fun box rds_recverr()
: I32 val

Returns


rds_trans_count

[Source]

fun box rds_trans_count()
: I32 val

Returns


rds_trans_ib

[Source]

fun box rds_trans_ib()
: I32 val

Returns


rds_trans_iwarp

[Source]

fun box rds_trans_iwarp()
: I32 val

Returns


rds_trans_none

[Source]

fun box rds_trans_none()
: I32 val

Returns


rds_trans_tcp

[Source]

fun box rds_trans_tcp()
: I32 val

Returns


rose_access_barred

[Source]

fun box rose_access_barred()
: I32 val

Returns


rose_defer

[Source]

fun box rose_defer()
: I32 val

Returns


rose_dte_originated

[Source]

fun box rose_dte_originated()
: I32 val

Returns


rose_holdback

[Source]

fun box rose_holdback()
: I32 val

Returns


rose_idle

[Source]

fun box rose_idle()
: I32 val

Returns


rose_invalid_facility

[Source]

fun box rose_invalid_facility()
: I32 val

Returns


rose_local_procedure

[Source]

fun box rose_local_procedure()
: I32 val

Returns


rose_max_digis

[Source]

fun box rose_max_digis()
: I32 val

Returns


rose_mtu

[Source]

fun box rose_mtu()
: I32 val

Returns


rose_network_congestion

[Source]

fun box rose_network_congestion()
: I32 val

Returns


rose_not_obtainable

[Source]

fun box rose_not_obtainable()
: I32 val

Returns


rose_number_busy

[Source]

fun box rose_number_busy()
: I32 val

Returns


rose_out_of_order

[Source]

fun box rose_out_of_order()
: I32 val

Returns


rose_qbitincl

[Source]

fun box rose_qbitincl()
: I32 val

Returns


rose_remote_procedure

[Source]

fun box rose_remote_procedure()
: I32 val

Returns


rose_ship_absent

[Source]

fun box rose_ship_absent()
: I32 val

Returns


rose_t1

[Source]

fun box rose_t1()
: I32 val

Returns


rose_t2

[Source]

fun box rose_t2()
: I32 val

Returns


rose_t3

[Source]

fun box rose_t3()
: I32 val

Returns


scm_hci_raw_direction

[Source]

fun box scm_hci_raw_direction()
: I32 val

Returns


scm_timestamp

[Source]

fun box scm_timestamp()
: I32 val

Returns


scm_timestamping

[Source]

fun box scm_timestamping()
: I32 val

Returns


scm_timestampns

[Source]

fun box scm_timestampns()
: I32 val

Returns


scm_wifi_status

[Source]

fun box scm_wifi_status()
: I32 val

Returns


sctp_abort_association

[Source]

fun box sctp_abort_association()
: I32 val

Returns


sctp_adaptation_layer

[Source]

fun box sctp_adaptation_layer()
: I32 val

Returns


sctp_adaption_layer

[Source]

fun box sctp_adaption_layer()
: I32 val

Returns


sctp_add_streams

[Source]

fun box sctp_add_streams()
: I32 val

Returns


sctp_add_vrf_id

[Source]

fun box sctp_add_vrf_id()
: I32 val

Returns


sctp_asconf

[Source]

fun box sctp_asconf()
: I32 val

Returns


sctp_asconf_ack

[Source]

fun box sctp_asconf_ack()
: I32 val

Returns


sctp_asconf_supported

[Source]

fun box sctp_asconf_supported()
: I32 val

Returns


sctp_associnfo

[Source]

fun box sctp_associnfo()
: I32 val

Returns


sctp_authentication

[Source]

fun box sctp_authentication()
: I32 val

Returns


sctp_auth_active_key

[Source]

fun box sctp_auth_active_key()
: I32 val

Returns


sctp_auth_chunk

[Source]

fun box sctp_auth_chunk()
: I32 val

Returns


sctp_auth_deactivate_key

[Source]

fun box sctp_auth_deactivate_key()
: I32 val

Returns


sctp_auth_delete_key

[Source]

fun box sctp_auth_delete_key()
: I32 val

Returns


sctp_auth_key

[Source]

fun box sctp_auth_key()
: I32 val

Returns


sctp_auth_supported

[Source]

fun box sctp_auth_supported()
: I32 val

Returns


sctp_autoclose

[Source]

fun box sctp_autoclose()
: I32 val

Returns


sctp_auto_asconf

[Source]

fun box sctp_auto_asconf()
: I32 val

Returns


sctp_badcrc

[Source]

fun box sctp_badcrc()
: I32 val

Returns


sctp_bindx_add_addr

[Source]

fun box sctp_bindx_add_addr()
: I32 val

Returns


sctp_bindx_rem_addr

[Source]

fun box sctp_bindx_rem_addr()
: I32 val

Returns


sctp_blk_logging_enable

[Source]

fun box sctp_blk_logging_enable()
: I32 val

Returns


sctp_bound

[Source]

fun box sctp_bound()
: I32 val

Returns


[Source]

fun box sctp_cause_cookie_in_shutdown()
: I32 val

Returns


sctp_cause_deleting_last_addr

[Source]

fun box sctp_cause_deleting_last_addr()
: I32 val

Returns


sctp_cause_deleting_src_addr

[Source]

fun box sctp_cause_deleting_src_addr()
: I32 val

Returns


sctp_cause_illegal_asconf_ack

[Source]

fun box sctp_cause_illegal_asconf_ack()
: I32 val

Returns


sctp_cause_invalid_param

[Source]

fun box sctp_cause_invalid_param()
: I32 val

Returns


sctp_cause_invalid_stream

[Source]

fun box sctp_cause_invalid_stream()
: I32 val

Returns


sctp_cause_missing_param

[Source]

fun box sctp_cause_missing_param()
: I32 val

Returns


sctp_cause_nat_colliding_state

[Source]

fun box sctp_cause_nat_colliding_state()
: I32 val

Returns


sctp_cause_nat_missing_state

[Source]

fun box sctp_cause_nat_missing_state()
: I32 val

Returns


sctp_cause_no_error

[Source]

fun box sctp_cause_no_error()
: I32 val

Returns


sctp_cause_no_user_data

[Source]

fun box sctp_cause_no_user_data()
: I32 val

Returns


sctp_cause_out_of_resc

[Source]

fun box sctp_cause_out_of_resc()
: I32 val

Returns


sctp_cause_protocol_violation

[Source]

fun box sctp_cause_protocol_violation()
: I32 val

Returns


sctp_cause_request_refused

[Source]

fun box sctp_cause_request_refused()
: I32 val

Returns


sctp_cause_resource_shortage

[Source]

fun box sctp_cause_resource_shortage()
: I32 val

Returns


sctp_cause_restart_w_newaddr

[Source]

fun box sctp_cause_restart_w_newaddr()
: I32 val

Returns


[Source]

fun box sctp_cause_stale_cookie()
: I32 val

Returns


sctp_cause_unrecog_chunk

[Source]

fun box sctp_cause_unrecog_chunk()
: I32 val

Returns


sctp_cause_unrecog_param

[Source]

fun box sctp_cause_unrecog_param()
: I32 val

Returns


sctp_cause_unresolvable_addr

[Source]

fun box sctp_cause_unresolvable_addr()
: I32 val

Returns


sctp_cause_unsupported_hmacid

[Source]

fun box sctp_cause_unsupported_hmacid()
: I32 val

Returns


sctp_cause_user_initiated_abt

[Source]

fun box sctp_cause_user_initiated_abt()
: I32 val

Returns


sctp_cc_hstcp

[Source]

fun box sctp_cc_hstcp()
: I32 val

Returns


sctp_cc_htcp

[Source]

fun box sctp_cc_htcp()
: I32 val

Returns


sctp_cc_option

[Source]

fun box sctp_cc_option()
: I32 val

Returns


sctp_cc_opt_rtcc_setmode

[Source]

fun box sctp_cc_opt_rtcc_setmode()
: I32 val

Returns


sctp_cc_opt_steady_step

[Source]

fun box sctp_cc_opt_steady_step()
: I32 val

Returns


sctp_cc_opt_use_dccc_ecn

[Source]

fun box sctp_cc_opt_use_dccc_ecn()
: I32 val

Returns


sctp_cc_rfc2581

[Source]

fun box sctp_cc_rfc2581()
: I32 val

Returns


sctp_cc_rtcc

[Source]

fun box sctp_cc_rtcc()
: I32 val

Returns


sctp_closed

[Source]

fun box sctp_closed()
: I32 val

Returns


sctp_clr_stat_log

[Source]

fun box sctp_clr_stat_log()
: I32 val

Returns


sctp_cmt_base

[Source]

fun box sctp_cmt_base()
: I32 val

Returns


sctp_cmt_max

[Source]

fun box sctp_cmt_max()
: I32 val

Returns


sctp_cmt_mptcp

[Source]

fun box sctp_cmt_mptcp()
: I32 val

Returns


sctp_cmt_off

[Source]

fun box sctp_cmt_off()
: I32 val

Returns


sctp_cmt_on_off

[Source]

fun box sctp_cmt_on_off()
: I32 val

Returns


sctp_cmt_rpv1

[Source]

fun box sctp_cmt_rpv1()
: I32 val

Returns


sctp_cmt_rpv2

[Source]

fun box sctp_cmt_rpv2()
: I32 val

Returns


sctp_cmt_use_dac

[Source]

fun box sctp_cmt_use_dac()
: I32 val

Returns


sctp_connect_x

[Source]

fun box sctp_connect_x()
: I32 val

Returns


sctp_connect_x_complete

[Source]

fun box sctp_connect_x_complete()
: I32 val

Returns


sctp_connect_x_delayed

[Source]

fun box sctp_connect_x_delayed()
: I32 val

Returns


sctp_context

[Source]

fun box sctp_context()
: I32 val

Returns


[Source]

fun box sctp_cookie_ack()
: I32 val

Returns


[Source]

fun box sctp_cookie_echo()
: I32 val

Returns


[Source]

fun box sctp_cookie_echoed()
: I32 val

Returns


[Source]

fun box sctp_cookie_wait()
: I32 val

Returns


sctp_cwnd_logging_enable

[Source]

fun box sctp_cwnd_logging_enable()
: I32 val

Returns


sctp_cwnd_monitor_enable

[Source]

fun box sctp_cwnd_monitor_enable()
: I32 val

Returns


sctp_cwr_in_same_window

[Source]

fun box sctp_cwr_in_same_window()
: I32 val

Returns


sctp_cwr_reduce_override

[Source]

fun box sctp_cwr_reduce_override()
: I32 val

Returns


sctp_data

[Source]

fun box sctp_data()
: I32 val

Returns


sctp_data_first_frag

[Source]

fun box sctp_data_first_frag()
: I32 val

Returns


sctp_data_frag_mask

[Source]

fun box sctp_data_frag_mask()
: I32 val

Returns


sctp_data_last_frag

[Source]

fun box sctp_data_last_frag()
: I32 val

Returns


sctp_data_middle_frag

[Source]

fun box sctp_data_middle_frag()
: I32 val

Returns


sctp_data_not_frag

[Source]

fun box sctp_data_not_frag()
: I32 val

Returns


sctp_data_sack_immediately

[Source]

fun box sctp_data_sack_immediately()
: I32 val

Returns


sctp_data_unordered

[Source]

fun box sctp_data_unordered()
: I32 val

Returns


sctp_default_prinfo

[Source]

fun box sctp_default_prinfo()
: I32 val

Returns


sctp_default_send_param

[Source]

fun box sctp_default_send_param()
: I32 val

Returns


sctp_default_sndinfo

[Source]

fun box sctp_default_sndinfo()
: I32 val

Returns


sctp_delayed_sack

[Source]

fun box sctp_delayed_sack()
: I32 val

Returns


sctp_del_vrf_id

[Source]

fun box sctp_del_vrf_id()
: I32 val

Returns


sctp_disable_fragments

[Source]

fun box sctp_disable_fragments()
: I32 val

Returns


sctp_ecn_cwr

[Source]

fun box sctp_ecn_cwr()
: I32 val

Returns


sctp_ecn_echo

[Source]

fun box sctp_ecn_echo()
: I32 val

Returns


sctp_ecn_supported

[Source]

fun box sctp_ecn_supported()
: I32 val

Returns


sctp_enable_change_assoc_req

[Source]

fun box sctp_enable_change_assoc_req()
: I32 val

Returns


sctp_enable_reset_assoc_req

[Source]

fun box sctp_enable_reset_assoc_req()
: I32 val

Returns


sctp_enable_reset_stream_req

[Source]

fun box sctp_enable_reset_stream_req()
: I32 val

Returns


sctp_enable_stream_reset

[Source]

fun box sctp_enable_stream_reset()
: I32 val

Returns


sctp_enable_value_mask

[Source]

fun box sctp_enable_value_mask()
: I32 val

Returns


sctp_established

[Source]

fun box sctp_established()
: I32 val

Returns


sctp_event

[Source]

fun box sctp_event()
: I32 val

Returns


sctp_events

[Source]

fun box sctp_events()
: I32 val

Returns


sctp_explicit_eor

[Source]

fun box sctp_explicit_eor()
: I32 val

Returns


sctp_flight_logging_enable

[Source]

fun box sctp_flight_logging_enable()
: I32 val

Returns


sctp_forward_cum_tsn

[Source]

fun box sctp_forward_cum_tsn()
: I32 val

Returns


sctp_fragment_interleave

[Source]

fun box sctp_fragment_interleave()
: I32 val

Returns


sctp_frag_level_0

[Source]

fun box sctp_frag_level_0()
: I32 val

Returns


sctp_frag_level_1

[Source]

fun box sctp_frag_level_1()
: I32 val

Returns


sctp_frag_level_2

[Source]

fun box sctp_frag_level_2()
: I32 val

Returns


sctp_from_middle_box

[Source]

fun box sctp_from_middle_box()
: I32 val

Returns


sctp_fr_logging_enable

[Source]

fun box sctp_fr_logging_enable()
: I32 val

Returns


sctp_get_addr_len

[Source]

fun box sctp_get_addr_len()
: I32 val

Returns


sctp_get_asoc_vrf

[Source]

fun box sctp_get_asoc_vrf()
: I32 val

Returns


sctp_get_assoc_id_list

[Source]

fun box sctp_get_assoc_id_list()
: I32 val

Returns


sctp_get_assoc_number

[Source]

fun box sctp_get_assoc_number()
: I32 val

Returns


sctp_get_local_addresses

[Source]

fun box sctp_get_local_addresses()
: I32 val

Returns


sctp_get_local_addr_size

[Source]

fun box sctp_get_local_addr_size()
: I32 val

Returns


sctp_get_nonce_values

[Source]

fun box sctp_get_nonce_values()
: I32 val

Returns


sctp_get_packet_log

[Source]

fun box sctp_get_packet_log()
: I32 val

Returns


sctp_get_peer_addresses

[Source]

fun box sctp_get_peer_addresses()
: I32 val

Returns


sctp_get_peer_addr_info

[Source]

fun box sctp_get_peer_addr_info()
: I32 val

Returns


sctp_get_remote_addr_size

[Source]

fun box sctp_get_remote_addr_size()
: I32 val

Returns


sctp_get_sndbuf_use

[Source]

fun box sctp_get_sndbuf_use()
: I32 val

Returns


sctp_get_stat_log

[Source]

fun box sctp_get_stat_log()
: I32 val

Returns


sctp_get_vrf_ids

[Source]

fun box sctp_get_vrf_ids()
: I32 val

Returns


sctp_had_no_tcb

[Source]

fun box sctp_had_no_tcb()
: I32 val

Returns


sctp_heartbeat_ack

[Source]

fun box sctp_heartbeat_ack()
: I32 val

Returns


sctp_heartbeat_request

[Source]

fun box sctp_heartbeat_request()
: I32 val

Returns


sctp_hmac_ident

[Source]

fun box sctp_hmac_ident()
: I32 val

Returns


sctp_idata

[Source]

fun box sctp_idata()
: I32 val

Returns


sctp_iforward_cum_tsn

[Source]

fun box sctp_iforward_cum_tsn()
: I32 val

Returns


sctp_initiation

[Source]

fun box sctp_initiation()
: I32 val

Returns


sctp_initiation_ack

[Source]

fun box sctp_initiation_ack()
: I32 val

Returns


sctp_initmsg

[Source]

fun box sctp_initmsg()
: I32 val

Returns


sctp_interleaving_supported

[Source]

fun box sctp_interleaving_supported()
: I32 val

Returns


sctp_i_want_mapped_v4_addr

[Source]

fun box sctp_i_want_mapped_v4_addr()
: I32 val

Returns


sctp_last_packet_tracing

[Source]

fun box sctp_last_packet_tracing()
: I32 val

Returns


sctp_listen

[Source]

fun box sctp_listen()
: I32 val

Returns


sctp_local_auth_chunks

[Source]

fun box sctp_local_auth_chunks()
: I32 val

Returns


sctp_lock_logging_enable

[Source]

fun box sctp_lock_logging_enable()
: I32 val

Returns


sctp_log_at_send_2_outq

[Source]

fun box sctp_log_at_send_2_outq()
: I32 val

Returns


sctp_log_at_send_2_sctp

[Source]

fun box sctp_log_at_send_2_sctp()
: I32 val

Returns


sctp_log_maxburst_enable

[Source]

fun box sctp_log_maxburst_enable()
: I32 val

Returns


sctp_log_rwnd_enable

[Source]

fun box sctp_log_rwnd_enable()
: I32 val

Returns


sctp_log_sack_arrivals_enable

[Source]

fun box sctp_log_sack_arrivals_enable()
: I32 val

Returns


sctp_log_try_advance

[Source]

fun box sctp_log_try_advance()
: I32 val

Returns


sctp_ltrace_chunk_enable

[Source]

fun box sctp_ltrace_chunk_enable()
: I32 val

Returns


sctp_ltrace_error_enable

[Source]

fun box sctp_ltrace_error_enable()
: I32 val

Returns


sctp_map_logging_enable

[Source]

fun box sctp_map_logging_enable()
: I32 val

Returns


sctp_maxburst

[Source]

fun box sctp_maxburst()
: I32 val

Returns


sctp_maxseg

[Source]

fun box sctp_maxseg()
: I32 val

Returns


sctp_max_burst

[Source]

fun box sctp_max_burst()
: I32 val

Returns


[Source]

fun box sctp_max_cookie_life()
: I32 val

Returns


sctp_max_cwnd

[Source]

fun box sctp_max_cwnd()
: I32 val

Returns


sctp_max_hb_interval

[Source]

fun box sctp_max_hb_interval()
: I32 val

Returns


sctp_max_sack_delay

[Source]

fun box sctp_max_sack_delay()
: I32 val

Returns


sctp_mbcnt_logging_enable

[Source]

fun box sctp_mbcnt_logging_enable()
: I32 val

Returns


sctp_mbuf_logging_enable

[Source]

fun box sctp_mbuf_logging_enable()
: I32 val

Returns


sctp_mobility_base

[Source]

fun box sctp_mobility_base()
: I32 val

Returns


sctp_mobility_fasthandoff

[Source]

fun box sctp_mobility_fasthandoff()
: I32 val

Returns


sctp_mobility_prim_deleted

[Source]

fun box sctp_mobility_prim_deleted()
: I32 val

Returns


sctp_nagle_logging_enable

[Source]

fun box sctp_nagle_logging_enable()
: I32 val

Returns


sctp_nodelay

[Source]

fun box sctp_nodelay()
: I32 val

Returns


sctp_nrsack_supported

[Source]

fun box sctp_nrsack_supported()
: I32 val

Returns


sctp_nr_selective_ack

[Source]

fun box sctp_nr_selective_ack()
: I32 val

Returns


sctp_operation_error

[Source]

fun box sctp_operation_error()
: I32 val

Returns


sctp_packed

[Source]

fun box sctp_packed()
: I32 val

Returns


sctp_packet_dropped

[Source]

fun box sctp_packet_dropped()
: I32 val

Returns


sctp_packet_log_size

[Source]

fun box sctp_packet_log_size()
: I32 val

Returns


sctp_packet_truncated

[Source]

fun box sctp_packet_truncated()
: I32 val

Returns


sctp_pad_chunk

[Source]

fun box sctp_pad_chunk()
: I32 val

Returns


sctp_partial_delivery_point

[Source]

fun box sctp_partial_delivery_point()
: I32 val

Returns


sctp_pcb_copy_flags

[Source]

fun box sctp_pcb_copy_flags()
: I32 val

Returns


sctp_pcb_flags_accepting

[Source]

fun box sctp_pcb_flags_accepting()
: I32 val

Returns


sctp_pcb_flags_adaptationevnt

[Source]

fun box sctp_pcb_flags_adaptationevnt()
: I32 val

Returns


sctp_pcb_flags_assoc_resetevnt

[Source]

fun box sctp_pcb_flags_assoc_resetevnt()
: I32 val

Returns


sctp_pcb_flags_authevnt

[Source]

fun box sctp_pcb_flags_authevnt()
: I32 val

Returns


sctp_pcb_flags_autoclose

[Source]

fun box sctp_pcb_flags_autoclose()
: I32 val

Returns


sctp_pcb_flags_auto_asconf

[Source]

fun box sctp_pcb_flags_auto_asconf()
: I32 val

Returns


sctp_pcb_flags_blocking_io

[Source]

fun box sctp_pcb_flags_blocking_io()
: I32 val

Returns


sctp_pcb_flags_boundall

[Source]

fun box sctp_pcb_flags_boundall()
: I32 val

Returns


sctp_pcb_flags_bound_v6

[Source]

fun box sctp_pcb_flags_bound_v6()
: I32 val

Returns


sctp_pcb_flags_close_ip

[Source]

fun box sctp_pcb_flags_close_ip()
: I32 val

Returns


sctp_pcb_flags_connected

[Source]

fun box sctp_pcb_flags_connected()
: I32 val

Returns


sctp_pcb_flags_donot_heartbeat

[Source]

fun box sctp_pcb_flags_donot_heartbeat()
: I32 val

Returns


sctp_pcb_flags_dont_wake

[Source]

fun box sctp_pcb_flags_dont_wake()
: I32 val

Returns


sctp_pcb_flags_do_asconf

[Source]

fun box sctp_pcb_flags_do_asconf()
: I32 val

Returns


sctp_pcb_flags_do_not_pmtud

[Source]

fun box sctp_pcb_flags_do_not_pmtud()
: I32 val

Returns


sctp_pcb_flags_dryevnt

[Source]

fun box sctp_pcb_flags_dryevnt()
: I32 val

Returns


sctp_pcb_flags_explicit_eor

[Source]

fun box sctp_pcb_flags_explicit_eor()
: I32 val

Returns


sctp_pcb_flags_ext_rcvinfo

[Source]

fun box sctp_pcb_flags_ext_rcvinfo()
: I32 val

Returns


sctp_pcb_flags_frag_interleave

[Source]

fun box sctp_pcb_flags_frag_interleave()
: I32 val

Returns


sctp_pcb_flags_interleave_strms

[Source]

fun box sctp_pcb_flags_interleave_strms()
: I32 val

Returns


sctp_pcb_flags_in_tcppool

[Source]

fun box sctp_pcb_flags_in_tcppool()
: I32 val

Returns


sctp_pcb_flags_multiple_asconfs

[Source]

fun box sctp_pcb_flags_multiple_asconfs()
: I32 val

Returns


sctp_pcb_flags_needs_mapped_v4

[Source]

fun box sctp_pcb_flags_needs_mapped_v4()
: I32 val

Returns


sctp_pcb_flags_nodelay

[Source]

fun box sctp_pcb_flags_nodelay()
: I32 val

Returns


sctp_pcb_flags_no_fragment

[Source]

fun box sctp_pcb_flags_no_fragment()
: I32 val

Returns


sctp_pcb_flags_pdapievnt

[Source]

fun box sctp_pcb_flags_pdapievnt()
: I32 val

Returns


sctp_pcb_flags_portreuse

[Source]

fun box sctp_pcb_flags_portreuse()
: I32 val

Returns


sctp_pcb_flags_recvassocevnt

[Source]

fun box sctp_pcb_flags_recvassocevnt()
: I32 val

Returns


sctp_pcb_flags_recvdataioevnt

[Source]

fun box sctp_pcb_flags_recvdataioevnt()
: I32 val

Returns


sctp_pcb_flags_recvnsendfailevnt

[Source]

fun box sctp_pcb_flags_recvnsendfailevnt()
: I32 val

Returns


sctp_pcb_flags_recvnxtinfo

[Source]

fun box sctp_pcb_flags_recvnxtinfo()
: I32 val

Returns


sctp_pcb_flags_recvpaddrevnt

[Source]

fun box sctp_pcb_flags_recvpaddrevnt()
: I32 val

Returns


sctp_pcb_flags_recvpeererr

[Source]

fun box sctp_pcb_flags_recvpeererr()
: I32 val

Returns


sctp_pcb_flags_recvrcvinfo

[Source]

fun box sctp_pcb_flags_recvrcvinfo()
: I32 val

Returns


sctp_pcb_flags_recvsendfailevnt

[Source]

fun box sctp_pcb_flags_recvsendfailevnt()
: I32 val

Returns


sctp_pcb_flags_recvshutdownevnt

[Source]

fun box sctp_pcb_flags_recvshutdownevnt()
: I32 val

Returns


sctp_pcb_flags_socket_allgone

[Source]

fun box sctp_pcb_flags_socket_allgone()
: I32 val

Returns


sctp_pcb_flags_socket_cant_read

[Source]

fun box sctp_pcb_flags_socket_cant_read()
: I32 val

Returns


sctp_pcb_flags_socket_gone

[Source]

fun box sctp_pcb_flags_socket_gone()
: I32 val

Returns


sctp_pcb_flags_stream_changeevnt

[Source]

fun box sctp_pcb_flags_stream_changeevnt()
: I32 val

Returns


sctp_pcb_flags_stream_resetevnt

[Source]

fun box sctp_pcb_flags_stream_resetevnt()
: I32 val

Returns


sctp_pcb_flags_tcptype

[Source]

fun box sctp_pcb_flags_tcptype()
: I32 val

Returns


sctp_pcb_flags_udptype

[Source]

fun box sctp_pcb_flags_udptype()
: I32 val

Returns


sctp_pcb_flags_unbound

[Source]

fun box sctp_pcb_flags_unbound()
: I32 val

Returns


sctp_pcb_flags_wakeinput

[Source]

fun box sctp_pcb_flags_wakeinput()
: I32 val

Returns


sctp_pcb_flags_wakeoutput

[Source]

fun box sctp_pcb_flags_wakeoutput()
: I32 val

Returns


sctp_pcb_flags_was_aborted

[Source]

fun box sctp_pcb_flags_was_aborted()
: I32 val

Returns


sctp_pcb_flags_was_connected

[Source]

fun box sctp_pcb_flags_was_connected()
: I32 val

Returns


sctp_pcb_flags_zero_copy_active

[Source]

fun box sctp_pcb_flags_zero_copy_active()
: I32 val

Returns


sctp_pcb_status

[Source]

fun box sctp_pcb_status()
: I32 val

Returns


sctp_peeloff

[Source]

fun box sctp_peeloff()
: I32 val

Returns


sctp_peer_addr_params

[Source]

fun box sctp_peer_addr_params()
: I32 val

Returns


sctp_peer_addr_thlds

[Source]

fun box sctp_peer_addr_thlds()
: I32 val

Returns


sctp_peer_auth_chunks

[Source]

fun box sctp_peer_auth_chunks()
: I32 val

Returns


sctp_pktdrop_supported

[Source]

fun box sctp_pktdrop_supported()
: I32 val

Returns


sctp_pluggable_cc

[Source]

fun box sctp_pluggable_cc()
: I32 val

Returns


sctp_pluggable_ss

[Source]

fun box sctp_pluggable_ss()
: I32 val

Returns


sctp_primary_addr

[Source]

fun box sctp_primary_addr()
: I32 val

Returns


sctp_pr_assoc_status

[Source]

fun box sctp_pr_assoc_status()
: I32 val

Returns


sctp_pr_stream_status

[Source]

fun box sctp_pr_stream_status()
: I32 val

Returns


sctp_pr_supported

[Source]

fun box sctp_pr_supported()
: I32 val

Returns


sctp_reconfig_supported

[Source]

fun box sctp_reconfig_supported()
: I32 val

Returns


sctp_recvnxtinfo

[Source]

fun box sctp_recvnxtinfo()
: I32 val

Returns


sctp_recvrcvinfo

[Source]

fun box sctp_recvrcvinfo()
: I32 val

Returns


sctp_recv_rwnd_logging_enable

[Source]

fun box sctp_recv_rwnd_logging_enable()
: I32 val

Returns


sctp_remote_udp_encaps_port

[Source]

fun box sctp_remote_udp_encaps_port()
: I32 val

Returns


sctp_reset_assoc

[Source]

fun box sctp_reset_assoc()
: I32 val

Returns


sctp_reset_streams

[Source]

fun box sctp_reset_streams()
: I32 val

Returns


sctp_reuse_port

[Source]

fun box sctp_reuse_port()
: I32 val

Returns


sctp_rtoinfo

[Source]

fun box sctp_rtoinfo()
: I32 val

Returns


sctp_rttvar_logging_enable

[Source]

fun box sctp_rttvar_logging_enable()
: I32 val

Returns


sctp_sack_cmt_dac

[Source]

fun box sctp_sack_cmt_dac()
: I32 val

Returns


sctp_sack_logging_enable

[Source]

fun box sctp_sack_logging_enable()
: I32 val

Returns


sctp_sack_nonce_sum

[Source]

fun box sctp_sack_nonce_sum()
: I32 val

Returns


sctp_sack_rwnd_logging_enable

[Source]

fun box sctp_sack_rwnd_logging_enable()
: I32 val

Returns


sctp_sat_network_burst_incr

[Source]

fun box sctp_sat_network_burst_incr()
: I32 val

Returns


sctp_sat_network_min

[Source]

fun box sctp_sat_network_min()
: I32 val

Returns


sctp_sb_logging_enable

[Source]

fun box sctp_sb_logging_enable()
: I32 val

Returns


sctp_selective_ack

[Source]

fun box sctp_selective_ack()
: I32 val

Returns


sctp_set_debug_level

[Source]

fun box sctp_set_debug_level()
: I32 val

Returns


sctp_set_dynamic_primary

[Source]

fun box sctp_set_dynamic_primary()
: I32 val

Returns


sctp_set_initial_dbg_seq

[Source]

fun box sctp_set_initial_dbg_seq()
: I32 val

Returns


sctp_set_peer_primary_addr

[Source]

fun box sctp_set_peer_primary_addr()
: I32 val

Returns


sctp_shutdown

[Source]

fun box sctp_shutdown()
: I32 val

Returns


sctp_shutdown_ack

[Source]

fun box sctp_shutdown_ack()
: I32 val

Returns


sctp_shutdown_ack_sent

[Source]

fun box sctp_shutdown_ack_sent()
: I32 val

Returns


sctp_shutdown_complete

[Source]

fun box sctp_shutdown_complete()
: I32 val

Returns


sctp_shutdown_pending

[Source]

fun box sctp_shutdown_pending()
: I32 val

Returns


sctp_shutdown_received

[Source]

fun box sctp_shutdown_received()
: I32 val

Returns


sctp_shutdown_sent

[Source]

fun box sctp_shutdown_sent()
: I32 val

Returns


sctp_smallest_pmtu

[Source]

fun box sctp_smallest_pmtu()
: I32 val

Returns


sctp_ss_default

[Source]

fun box sctp_ss_default()
: I32 val

Returns


sctp_ss_fair_bandwith

[Source]

fun box sctp_ss_fair_bandwith()
: I32 val

Returns


sctp_ss_first_come

[Source]

fun box sctp_ss_first_come()
: I32 val

Returns


sctp_ss_priority

[Source]

fun box sctp_ss_priority()
: I32 val

Returns


sctp_ss_round_robin

[Source]

fun box sctp_ss_round_robin()
: I32 val

Returns


sctp_ss_round_robin_packet

[Source]

fun box sctp_ss_round_robin_packet()
: I32 val

Returns


sctp_ss_value

[Source]

fun box sctp_ss_value()
: I32 val

Returns


sctp_status

[Source]

fun box sctp_status()
: I32 val

Returns


sctp_stream_reset

[Source]

fun box sctp_stream_reset()
: I32 val

Returns


sctp_stream_reset_incoming

[Source]

fun box sctp_stream_reset_incoming()
: I32 val

Returns


sctp_stream_reset_outgoing

[Source]

fun box sctp_stream_reset_outgoing()
: I32 val

Returns


sctp_str_logging_enable

[Source]

fun box sctp_str_logging_enable()
: I32 val

Returns


sctp_threshold_logging

[Source]

fun box sctp_threshold_logging()
: I32 val

Returns


sctp_timeouts

[Source]

fun box sctp_timeouts()
: I32 val

Returns


sctp_use_ext_rcvinfo

[Source]

fun box sctp_use_ext_rcvinfo()
: I32 val

Returns


sctp_vrf_id

[Source]

fun box sctp_vrf_id()
: I32 val

Returns


sctp_wake_logging_enable

[Source]

fun box sctp_wake_logging_enable()
: I32 val

Returns


sock_cloexec

[Source]

fun box sock_cloexec()
: I32 val

Returns


sock_dgram

[Source]

fun box sock_dgram()
: I32 val

Returns


sock_maxaddrlen

[Source]

fun box sock_maxaddrlen()
: I32 val

Returns


sock_nonblock

[Source]

fun box sock_nonblock()
: I32 val

Returns


sock_raw

[Source]

fun box sock_raw()
: I32 val

Returns


sock_rdm

[Source]

fun box sock_rdm()
: I32 val

Returns


sock_seqpacket

[Source]

fun box sock_seqpacket()
: I32 val

Returns


sock_stream

[Source]

fun box sock_stream()
: I32 val

Returns


somaxconn

[Source]

fun box somaxconn()
: I32 val

Returns


sonpx_setoptshut

[Source]

fun box sonpx_setoptshut()
: I32 val

Returns


so_acceptconn

[Source]

fun box so_acceptconn()
: I32 val

Returns


so_acceptfilter

[Source]

fun box so_acceptfilter()
: I32 val

Returns


so_atmpvc

[Source]

fun box so_atmpvc()
: I32 val

Returns


so_atmqos

[Source]

fun box so_atmqos()
: I32 val

Returns


so_atmsap

[Source]

fun box so_atmsap()
: I32 val

Returns


so_attach_bpf

[Source]

fun box so_attach_bpf()
: I32 val

Returns


so_attach_filter

[Source]

fun box so_attach_filter()
: I32 val

Returns


so_bindtodevice

[Source]

fun box so_bindtodevice()
: I32 val

Returns


so_bintime

[Source]

fun box so_bintime()
: I32 val

Returns


so_bpf_extensions

[Source]

fun box so_bpf_extensions()
: I32 val

Returns


so_broadcast

[Source]

fun box so_broadcast()
: I32 val

Returns


so_bsdcompat

[Source]

fun box so_bsdcompat()
: I32 val

Returns


so_bsp_state

[Source]

fun box so_bsp_state()
: I32 val

Returns


so_busy_poll

[Source]

fun box so_busy_poll()
: I32 val

Returns


so_conaccess

[Source]

fun box so_conaccess()
: I32 val

Returns


so_condata

[Source]

fun box so_condata()
: I32 val

Returns


so_conditional_accept

[Source]

fun box so_conditional_accept()
: I32 val

Returns


so_connect_time

[Source]

fun box so_connect_time()
: I32 val

Returns


so_debug

[Source]

fun box so_debug()
: I32 val

Returns


so_detach_bpf

[Source]

fun box so_detach_bpf()
: I32 val

Returns


so_detach_filter

[Source]

fun box so_detach_filter()
: I32 val

Returns


so_domain

[Source]

fun box so_domain()
: I32 val

Returns


so_dontlinger

[Source]

fun box so_dontlinger()
: I32 val

Returns


so_dontroute

[Source]

fun box so_dontroute()
: I32 val

Returns


so_donttrunc

[Source]

fun box so_donttrunc()
: I32 val

Returns


so_error

[Source]

fun box so_error()
: I32 val

Returns


so_exclusiveaddruse

[Source]

fun box so_exclusiveaddruse()
: I32 val

Returns


so_get_filter

[Source]

fun box so_get_filter()
: I32 val

Returns


so_group_id

[Source]

fun box so_group_id()
: I32 val

Returns


so_group_priority

[Source]

fun box so_group_priority()
: I32 val

Returns


so_hci_raw_direction

[Source]

fun box so_hci_raw_direction()
: I32 val

Returns


so_hci_raw_filter

[Source]

fun box so_hci_raw_filter()
: I32 val

Returns


so_incoming_cpu

[Source]

fun box so_incoming_cpu()
: I32 val

Returns


so_keepalive

[Source]

fun box so_keepalive()
: I32 val

Returns


so_l2cap_encrypted

[Source]

fun box so_l2cap_encrypted()
: I32 val

Returns


so_l2cap_flush

[Source]

fun box so_l2cap_flush()
: I32 val

Returns


so_l2cap_iflow

[Source]

fun box so_l2cap_iflow()
: I32 val

Returns


so_l2cap_imtu

[Source]

fun box so_l2cap_imtu()
: I32 val

Returns


so_l2cap_oflow

[Source]

fun box so_l2cap_oflow()
: I32 val

Returns


so_l2cap_omtu

[Source]

fun box so_l2cap_omtu()
: I32 val

Returns


so_label

[Source]

fun box so_label()
: I32 val

Returns


so_linger

[Source]

fun box so_linger()
: I32 val

Returns


so_linger_sec

[Source]

fun box so_linger_sec()
: I32 val

Returns


so_linkinfo

[Source]

fun box so_linkinfo()
: I32 val

Returns


so_listenincqlen

[Source]

fun box so_listenincqlen()
: I32 val

Returns


so_listenqlen

[Source]

fun box so_listenqlen()
: I32 val

Returns


so_listenqlimit

[Source]

fun box so_listenqlimit()
: I32 val

Returns


so_lock_filter

[Source]

fun box so_lock_filter()
: I32 val

Returns


so_mark

[Source]

fun box so_mark()
: I32 val

Returns


so_max_msg_size

[Source]

fun box so_max_msg_size()
: I32 val

Returns


so_max_pacing_rate

[Source]

fun box so_max_pacing_rate()
: I32 val

Returns


so_multipoint

[Source]

fun box so_multipoint()
: I32 val

Returns


so_netsvc_marking_level

[Source]

fun box so_netsvc_marking_level()
: I32 val

Returns


so_net_service_type

[Source]

fun box so_net_service_type()
: I32 val

Returns


so_nke

[Source]

fun box so_nke()
: I32 val

Returns


so_noaddrerr

[Source]

fun box so_noaddrerr()
: I32 val

Returns


so_nofcs

[Source]

fun box so_nofcs()
: I32 val

Returns


so_nosigpipe

[Source]

fun box so_nosigpipe()
: I32 val

Returns


so_notifyconflict

[Source]

fun box so_notifyconflict()
: I32 val

Returns


so_no_check

[Source]

fun box so_no_check()
: I32 val

Returns


so_no_ddp

[Source]

fun box so_no_ddp()
: I32 val

Returns


so_no_offload

[Source]

fun box so_no_offload()
: I32 val

Returns


so_np_extensions

[Source]

fun box so_np_extensions()
: I32 val

Returns


so_nread

[Source]

fun box so_nread()
: I32 val

Returns


so_numrcvpkt

[Source]

fun box so_numrcvpkt()
: I32 val

Returns


so_nwrite

[Source]

fun box so_nwrite()
: I32 val

Returns


so_oobinline

[Source]

fun box so_oobinline()
: I32 val

Returns


so_original_dst

[Source]

fun box so_original_dst()
: I32 val

Returns


so_passcred

[Source]

fun box so_passcred()
: I32 val

Returns


so_passsec

[Source]

fun box so_passsec()
: I32 val

Returns


so_peek_off

[Source]

fun box so_peek_off()
: I32 val

Returns


so_peercred

[Source]

fun box so_peercred()
: I32 val

Returns


so_peerlabel

[Source]

fun box so_peerlabel()
: I32 val

Returns


so_peername

[Source]

fun box so_peername()
: I32 val

Returns


so_peersec

[Source]

fun box so_peersec()
: I32 val

Returns


so_port_scalability

[Source]

fun box so_port_scalability()
: I32 val

Returns


so_priority

[Source]

fun box so_priority()
: I32 val

Returns


so_protocol

[Source]

fun box so_protocol()
: I32 val

Returns


so_protocol_info

[Source]

fun box so_protocol_info()
: I32 val

Returns


so_prototype

[Source]

fun box so_prototype()
: I32 val

Returns


so_proxyusr

[Source]

fun box so_proxyusr()
: I32 val

Returns


so_randomport

[Source]

fun box so_randomport()
: I32 val

Returns


so_rcvbuf

[Source]

fun box so_rcvbuf()
: I32 val

Returns


so_rcvbufforce

[Source]

fun box so_rcvbufforce()
: I32 val

Returns


so_rcvlowat

[Source]

fun box so_rcvlowat()
: I32 val

Returns


so_rcvtimeo

[Source]

fun box so_rcvtimeo()
: I32 val

Returns


so_rds_transport

[Source]

fun box so_rds_transport()
: I32 val

Returns


so_reuseaddr

[Source]

fun box so_reuseaddr()
: I32 val

Returns


so_reuseport

[Source]

fun box so_reuseport()
: I32 val

Returns


so_reuseshareuid

[Source]

fun box so_reuseshareuid()
: I32 val

Returns


so_rfcomm_fc_info

[Source]

fun box so_rfcomm_fc_info()
: I32 val

Returns


so_rfcomm_mtu

[Source]

fun box so_rfcomm_mtu()
: I32 val

Returns


so_rxq_ovfl

[Source]

fun box so_rxq_ovfl()
: I32 val

Returns


so_sco_conninfo

[Source]

fun box so_sco_conninfo()
: I32 val

Returns


so_sco_mtu

[Source]

fun box so_sco_mtu()
: I32 val

Returns


so_security_authentication

[Source]

fun box so_security_authentication()
: I32 val

Returns


so_security_encryption_network

[Source]

fun box so_security_encryption_network()
: I32 val

Returns


so_security_encryption_transport

[Source]

fun box so_security_encryption_transport()
: I32 val

Returns


so_select_err_queue

[Source]

fun box so_select_err_queue()
: I32 val

Returns


so_setclp

[Source]

fun box so_setclp()
: I32 val

Returns


so_setfib

[Source]

fun box so_setfib()
: I32 val

Returns


so_sndbuf

[Source]

fun box so_sndbuf()
: I32 val

Returns


so_sndbufforce

[Source]

fun box so_sndbufforce()
: I32 val

Returns


so_sndlowat

[Source]

fun box so_sndlowat()
: I32 val

Returns


so_sndtimeo

[Source]

fun box so_sndtimeo()
: I32 val

Returns


so_timestamp

[Source]

fun box so_timestamp()
: I32 val

Returns


so_timestamping

[Source]

fun box so_timestamping()
: I32 val

Returns


so_timestampns

[Source]

fun box so_timestampns()
: I32 val

Returns


so_timestamp_monotonic

[Source]

fun box so_timestamp_monotonic()
: I32 val

Returns


so_type

[Source]

fun box so_type()
: I32 val

Returns


so_upcallclosewait

[Source]

fun box so_upcallclosewait()
: I32 val

Returns


so_update_accept_context

[Source]

fun box so_update_accept_context()
: I32 val

Returns


so_useloopback

[Source]

fun box so_useloopback()
: I32 val

Returns


[Source]

fun box so_user_cookie()
: I32 val

Returns


so_vendor

[Source]

fun box so_vendor()
: I32 val

Returns


so_vm_sockets_buffer_max_size

[Source]

fun box so_vm_sockets_buffer_max_size()
: I32 val

Returns


so_vm_sockets_buffer_min_size

[Source]

fun box so_vm_sockets_buffer_min_size()
: I32 val

Returns


so_vm_sockets_buffer_size

[Source]

fun box so_vm_sockets_buffer_size()
: I32 val

Returns


so_vm_sockets_connect_timeout

[Source]

fun box so_vm_sockets_connect_timeout()
: I32 val

Returns


so_vm_sockets_nonblock_txrx

[Source]

fun box so_vm_sockets_nonblock_txrx()
: I32 val

Returns


so_vm_sockets_peer_host_vm_id

[Source]

fun box so_vm_sockets_peer_host_vm_id()
: I32 val

Returns


so_vm_sockets_trusted

[Source]

fun box so_vm_sockets_trusted()
: I32 val

Returns


so_wantmore

[Source]

fun box so_wantmore()
: I32 val

Returns


so_wantoobflag

[Source]

fun box so_wantoobflag()
: I32 val

Returns


so_wifi_status

[Source]

fun box so_wifi_status()
: I32 val

Returns


tcp6_mss

[Source]

fun box tcp6_mss()
: I32 val

Returns


tcpci_flag_lossrecovery

[Source]

fun box tcpci_flag_lossrecovery()
: I32 val

Returns


tcpci_flag_reordering_detected

[Source]

fun box tcpci_flag_reordering_detected()
: I32 val

Returns


tcpci_opt_ecn

[Source]

fun box tcpci_opt_ecn()
: I32 val

Returns


tcpci_opt_sack

[Source]

fun box tcpci_opt_sack()
: I32 val

Returns


tcpci_opt_timestamps

[Source]

fun box tcpci_opt_timestamps()
: I32 val

Returns


tcpci_opt_wscale

[Source]

fun box tcpci_opt_wscale()
: I32 val

Returns


tcpf_ca_cwr

[Source]

fun box tcpf_ca_cwr()
: I32 val

Returns


tcpf_ca_disorder

[Source]

fun box tcpf_ca_disorder()
: I32 val

Returns


tcpf_ca_loss

[Source]

fun box tcpf_ca_loss()
: I32 val

Returns


tcpf_ca_open

[Source]

fun box tcpf_ca_open()
: I32 val

Returns


tcpf_ca_recovery

[Source]

fun box tcpf_ca_recovery()
: I32 val

Returns


tcpi_opt_ecn

[Source]

fun box tcpi_opt_ecn()
: I32 val

Returns


tcpi_opt_ecn_seen

[Source]

fun box tcpi_opt_ecn_seen()
: I32 val

Returns


tcpi_opt_sack

[Source]

fun box tcpi_opt_sack()
: I32 val

Returns


tcpi_opt_syn_data

[Source]

fun box tcpi_opt_syn_data()
: I32 val

Returns


tcpi_opt_timestamps

[Source]

fun box tcpi_opt_timestamps()
: I32 val

Returns


tcpi_opt_toe

[Source]

fun box tcpi_opt_toe()
: I32 val

Returns


tcpi_opt_wscale

[Source]

fun box tcpi_opt_wscale()
: I32 val

Returns


tcpolen_cc

[Source]

fun box tcpolen_cc()
: I32 val

Returns


tcpolen_cc_appa

[Source]

fun box tcpolen_cc_appa()
: I32 val

Returns


tcpolen_eol

[Source]

fun box tcpolen_eol()
: I32 val

Returns


tcpolen_fastopen_req

[Source]

fun box tcpolen_fastopen_req()
: I32 val

Returns


tcpolen_fast_open_empty

[Source]

fun box tcpolen_fast_open_empty()
: I32 val

Returns


tcpolen_fast_open_max

[Source]

fun box tcpolen_fast_open_max()
: I32 val

Returns


tcpolen_fast_open_min

[Source]

fun box tcpolen_fast_open_min()
: I32 val

Returns


tcpolen_maxseg

[Source]

fun box tcpolen_maxseg()
: I32 val

Returns


tcpolen_nop

[Source]

fun box tcpolen_nop()
: I32 val

Returns


tcpolen_pad

[Source]

fun box tcpolen_pad()
: I32 val

Returns


tcpolen_sack

[Source]

fun box tcpolen_sack()
: I32 val

Returns


tcpolen_sackhdr

[Source]

fun box tcpolen_sackhdr()
: I32 val

Returns


tcpolen_sack_permitted

[Source]

fun box tcpolen_sack_permitted()
: I32 val

Returns


tcpolen_signature

[Source]

fun box tcpolen_signature()
: I32 val

Returns


tcpolen_timestamp

[Source]

fun box tcpolen_timestamp()
: I32 val

Returns


tcpolen_tstamp_appa

[Source]

fun box tcpolen_tstamp_appa()
: I32 val

Returns


tcpolen_window

[Source]

fun box tcpolen_window()
: I32 val

Returns


tcpopt_cc

[Source]

fun box tcpopt_cc()
: I32 val

Returns


tcpopt_ccecho

[Source]

fun box tcpopt_ccecho()
: I32 val

Returns


tcpopt_ccnew

[Source]

fun box tcpopt_ccnew()
: I32 val

Returns


tcpopt_eol

[Source]

fun box tcpopt_eol()
: I32 val

Returns


tcpopt_fastopen

[Source]

fun box tcpopt_fastopen()
: I32 val

Returns


tcpopt_fast_open

[Source]

fun box tcpopt_fast_open()
: I32 val

Returns


tcpopt_maxseg

[Source]

fun box tcpopt_maxseg()
: I32 val

Returns


tcpopt_multipath

[Source]

fun box tcpopt_multipath()
: I32 val

Returns


tcpopt_nop

[Source]

fun box tcpopt_nop()
: I32 val

Returns


tcpopt_pad

[Source]

fun box tcpopt_pad()
: I32 val

Returns


tcpopt_sack

[Source]

fun box tcpopt_sack()
: I32 val

Returns


tcpopt_sack_hdr

[Source]

fun box tcpopt_sack_hdr()
: I32 val

Returns


tcpopt_sack_permitted

[Source]

fun box tcpopt_sack_permitted()
: I32 val

Returns


tcpopt_sack_permit_hdr

[Source]

fun box tcpopt_sack_permit_hdr()
: I32 val

Returns


tcpopt_signature

[Source]

fun box tcpopt_signature()
: I32 val

Returns


tcpopt_timestamp

[Source]

fun box tcpopt_timestamp()
: I32 val

Returns


tcpopt_tstamp_hdr

[Source]

fun box tcpopt_tstamp_hdr()
: I32 val

Returns


tcpopt_window

[Source]

fun box tcpopt_window()
: I32 val

Returns


tcp_ca_name_max

[Source]

fun box tcp_ca_name_max()
: I32 val

Returns


tcp_ccalgoopt

[Source]

fun box tcp_ccalgoopt()
: I32 val

Returns


tcp_cc_info

[Source]

fun box tcp_cc_info()
: I32 val

Returns


tcp_congestion

[Source]

fun box tcp_congestion()
: I32 val

Returns


tcp_connectiontimeout

[Source]

fun box tcp_connectiontimeout()
: I32 val

Returns


tcp_connection_info

[Source]

fun box tcp_connection_info()
: I32 val

Returns


[Source]

fun box tcp_cookie_in_always()
: I32 val

Returns


[Source]

fun box tcp_cookie_max()
: I32 val

Returns


[Source]

fun box tcp_cookie_min()
: I32 val

Returns


[Source]

fun box tcp_cookie_out_never()
: I32 val

Returns


[Source]

fun box tcp_cookie_pair_size()
: I32 val

Returns


[Source]

fun box tcp_cookie_transactions()
: I32 val

Returns


tcp_cork

[Source]

fun box tcp_cork()
: I32 val

Returns


tcp_defer_accept

[Source]

fun box tcp_defer_accept()
: I32 val

Returns


tcp_enable_ecn

[Source]

fun box tcp_enable_ecn()
: I32 val

Returns


tcp_fastopen

[Source]

fun box tcp_fastopen()
: I32 val

Returns


tcp_function_blk

[Source]

fun box tcp_function_blk()
: I32 val

Returns


tcp_function_name_len_max

[Source]

fun box tcp_function_name_len_max()
: I32 val

Returns


tcp_info

[Source]

fun box tcp_info()
: I32 val

Returns


tcp_keepalive

[Source]

fun box tcp_keepalive()
: I32 val

Returns


tcp_keepcnt

[Source]

fun box tcp_keepcnt()
: I32 val

Returns


tcp_keepidle

[Source]

fun box tcp_keepidle()
: I32 val

Returns


tcp_keepinit

[Source]

fun box tcp_keepinit()
: I32 val

Returns


tcp_keepintvl

[Source]

fun box tcp_keepintvl()
: I32 val

Returns


tcp_linger2

[Source]

fun box tcp_linger2()
: I32 val

Returns


tcp_maxburst

[Source]

fun box tcp_maxburst()
: I32 val

Returns


tcp_maxhlen

[Source]

fun box tcp_maxhlen()
: I32 val

Returns


tcp_maxolen

[Source]

fun box tcp_maxolen()
: I32 val

Returns


tcp_maxseg

[Source]

fun box tcp_maxseg()
: I32 val

Returns


tcp_maxwin

[Source]

fun box tcp_maxwin()
: I32 val

Returns


tcp_max_sack

[Source]

fun box tcp_max_sack()
: I32 val

Returns


tcp_max_winshift

[Source]

fun box tcp_max_winshift()
: I32 val

Returns


tcp_md5sig

[Source]

fun box tcp_md5sig()
: I32 val

Returns


tcp_md5sig_maxkeylen

[Source]

fun box tcp_md5sig_maxkeylen()
: I32 val

Returns


tcp_minmss

[Source]

fun box tcp_minmss()
: I32 val

Returns


tcp_mss

[Source]

fun box tcp_mss()
: I32 val

Returns


tcp_mss_default

[Source]

fun box tcp_mss_default()
: I32 val

Returns


tcp_mss_desired

[Source]

fun box tcp_mss_desired()
: I32 val

Returns


tcp_nodelay

[Source]

fun box tcp_nodelay()
: I32 val

Returns


tcp_noopt

[Source]

fun box tcp_noopt()
: I32 val

Returns


tcp_nopush

[Source]

fun box tcp_nopush()
: I32 val

Returns


tcp_notsent_lowat

[Source]

fun box tcp_notsent_lowat()
: I32 val

Returns


tcp_pcap_in

[Source]

fun box tcp_pcap_in()
: I32 val

Returns


tcp_pcap_out

[Source]

fun box tcp_pcap_out()
: I32 val

Returns


tcp_queue_seq

[Source]

fun box tcp_queue_seq()
: I32 val

Returns


tcp_quickack

[Source]

fun box tcp_quickack()
: I32 val

Returns


tcp_repair

[Source]

fun box tcp_repair()
: I32 val

Returns


tcp_repair_options

[Source]

fun box tcp_repair_options()
: I32 val

Returns


tcp_repair_queue

[Source]

fun box tcp_repair_queue()
: I32 val

Returns


tcp_rxt_conndroptime

[Source]

fun box tcp_rxt_conndroptime()
: I32 val

Returns


tcp_rxt_findrop

[Source]

fun box tcp_rxt_findrop()
: I32 val

Returns


tcp_saved_syn

[Source]

fun box tcp_saved_syn()
: I32 val

Returns


tcp_save_syn

[Source]

fun box tcp_save_syn()
: I32 val

Returns


tcp_sendmoreacks

[Source]

fun box tcp_sendmoreacks()
: I32 val

Returns


tcp_syncnt

[Source]

fun box tcp_syncnt()
: I32 val

Returns


tcp_s_data_in

[Source]

fun box tcp_s_data_in()
: I32 val

Returns


tcp_s_data_out

[Source]

fun box tcp_s_data_out()
: I32 val

Returns


tcp_thin_dupack

[Source]

fun box tcp_thin_dupack()
: I32 val

Returns


tcp_thin_linear_timeouts

[Source]

fun box tcp_thin_linear_timeouts()
: I32 val

Returns


tcp_timestamp

[Source]

fun box tcp_timestamp()
: I32 val

Returns


tcp_user_timeout

[Source]

fun box tcp_user_timeout()
: I32 val

Returns


tcp_vendor

[Source]

fun box tcp_vendor()
: I32 val

Returns


tcp_window_clamp

[Source]

fun box tcp_window_clamp()
: I32 val

Returns


tipc_addr_id

[Source]

fun box tipc_addr_id()
: I32 val

Returns


tipc_addr_mcast

[Source]

fun box tipc_addr_mcast()
: I32 val

Returns


tipc_addr_name

[Source]

fun box tipc_addr_name()
: I32 val

Returns


tipc_addr_nameseq

[Source]

fun box tipc_addr_nameseq()
: I32 val

Returns


tipc_cfg_srv

[Source]

fun box tipc_cfg_srv()
: I32 val

Returns


tipc_cluster_scope

[Source]

fun box tipc_cluster_scope()
: I32 val

Returns


tipc_conn_shutdown

[Source]

fun box tipc_conn_shutdown()
: I32 val

Returns


tipc_conn_timeout

[Source]

fun box tipc_conn_timeout()
: I32 val

Returns


tipc_critical_importance

[Source]

fun box tipc_critical_importance()
: I32 val

Returns


tipc_destname

[Source]

fun box tipc_destname()
: I32 val

Returns


tipc_dest_droppable

[Source]

fun box tipc_dest_droppable()
: I32 val

Returns


tipc_errinfo

[Source]

fun box tipc_errinfo()
: I32 val

Returns


tipc_err_no_name

[Source]

fun box tipc_err_no_name()
: I32 val

Returns


tipc_err_no_node

[Source]

fun box tipc_err_no_node()
: I32 val

Returns


tipc_err_no_port

[Source]

fun box tipc_err_no_port()
: I32 val

Returns


tipc_err_overload

[Source]

fun box tipc_err_overload()
: I32 val

Returns


tipc_high_importance

[Source]

fun box tipc_high_importance()
: I32 val

Returns


tipc_importance

[Source]

fun box tipc_importance()
: I32 val

Returns


[Source]

fun box tipc_link_state()
: I32 val

Returns


tipc_low_importance

[Source]

fun box tipc_low_importance()
: I32 val

Returns


tipc_max_bearer_name

[Source]

fun box tipc_max_bearer_name()
: I32 val

Returns


tipc_max_if_name

[Source]

fun box tipc_max_if_name()
: I32 val

Returns


[Source]

fun box tipc_max_link_name()
: I32 val

Returns


tipc_max_media_name

[Source]

fun box tipc_max_media_name()
: I32 val

Returns


tipc_max_user_msg_size

[Source]

fun box tipc_max_user_msg_size()
: I32 val

Returns


tipc_medium_importance

[Source]

fun box tipc_medium_importance()
: I32 val

Returns


tipc_node_recvq_depth

[Source]

fun box tipc_node_recvq_depth()
: I32 val

Returns


tipc_node_scope

[Source]

fun box tipc_node_scope()
: I32 val

Returns


tipc_ok

[Source]

fun box tipc_ok()
: I32 val

Returns


tipc_published

[Source]

fun box tipc_published()
: I32 val

Returns


tipc_reserved_types

[Source]

fun box tipc_reserved_types()
: I32 val

Returns


tipc_retdata

[Source]

fun box tipc_retdata()
: I32 val

Returns


tipc_sock_recvq_depth

[Source]

fun box tipc_sock_recvq_depth()
: I32 val

Returns


tipc_src_droppable

[Source]

fun box tipc_src_droppable()
: I32 val

Returns


tipc_subscr_timeout

[Source]

fun box tipc_subscr_timeout()
: I32 val

Returns


tipc_sub_cancel

[Source]

fun box tipc_sub_cancel()
: I32 val

Returns


tipc_sub_ports

[Source]

fun box tipc_sub_ports()
: I32 val

Returns


tipc_sub_service

[Source]

fun box tipc_sub_service()
: I32 val

Returns


tipc_top_srv

[Source]

fun box tipc_top_srv()
: I32 val

Returns


tipc_wait_forever

[Source]

fun box tipc_wait_forever()
: I32 val

Returns


tipc_withdrawn

[Source]

fun box tipc_withdrawn()
: I32 val

Returns


tipc_zone_scope

[Source]

fun box tipc_zone_scope()
: I32 val

Returns


ttcp_client_snd_wnd

[Source]

fun box ttcp_client_snd_wnd()
: I32 val

Returns


udp_cork

[Source]

fun box udp_cork()
: I32 val

Returns


udp_encap

[Source]

fun box udp_encap()
: I32 val

Returns


udp_encap_espinudp

[Source]

fun box udp_encap_espinudp()
: I32 val

Returns


udp_encap_espinudp_maxfraglen

[Source]

fun box udp_encap_espinudp_maxfraglen()
: I32 val

Returns


udp_encap_espinudp_non_ike

[Source]

fun box udp_encap_espinudp_non_ike()
: I32 val

Returns


udp_encap_espinudp_port

[Source]

fun box udp_encap_espinudp_port()
: I32 val

Returns


udp_encap_l2tpinudp

[Source]

fun box udp_encap_l2tpinudp()
: I32 val

Returns


udp_nocksum

[Source]

fun box udp_nocksum()
: I32 val

Returns


udp_no_check6_rx

[Source]

fun box udp_no_check6_rx()
: I32 val

Returns


udp_no_check6_tx

[Source]

fun box udp_no_check6_tx()
: I32 val

Returns


udp_vendor

[Source]

fun box udp_vendor()
: I32 val

Returns


so_rcvtimeo_old

[Source]

fun box so_rcvtimeo_old()
: I32 val

Returns


so_rcvtimeo_new

[Source]

fun box so_rcvtimeo_new()
: I32 val

Returns


so_sndtimeo_old

[Source]

fun box so_sndtimeo_old()
: I32 val

Returns


so_sndtimeo_new

[Source]

fun box so_sndtimeo_new()
: I32 val

Returns


eq

[Source]

fun box eq(
  that: OSSockOpt val)
: Bool val

Parameters

Returns


ne

[Source]

fun box ne(
  that: OSSockOpt val)
: Bool val

Parameters

Returns