OSSockOpt
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; @pony_os_setsockopt[I32](fd, OSSockOpt.sol_socket(), OSSockOpt.so_rcvbuf(), addressof option, I32(4))
primitive val OSSockOpt
Constructors
create
new val create() : OSSockOpt val^
Returns
- OSSockOpt val^
Public Functions
ipproto_3pc
fun box ipproto_3pc() : I32 val
Returns
- I32 val
ipproto_adfs
fun box ipproto_adfs() : I32 val
Returns
- I32 val
ipproto_ah
fun box ipproto_ah() : I32 val
Returns
- I32 val
ipproto_ahip
fun box ipproto_ahip() : I32 val
Returns
- I32 val
ipproto_apes
fun box ipproto_apes() : I32 val
Returns
- I32 val
ipproto_argus
fun box ipproto_argus() : I32 val
Returns
- I32 val
ipproto_ax25
fun box ipproto_ax25() : I32 val
Returns
- I32 val
ipproto_beetph
fun box ipproto_beetph() : I32 val
Returns
- I32 val
ipproto_bha
fun box ipproto_bha() : I32 val
Returns
- I32 val
ipproto_blt
fun box ipproto_blt() : I32 val
Returns
- I32 val
ipproto_brsatmon
fun box ipproto_brsatmon() : I32 val
Returns
- I32 val
ipproto_carp
fun box ipproto_carp() : I32 val
Returns
- I32 val
ipproto_cftp
fun box ipproto_cftp() : I32 val
Returns
- I32 val
ipproto_chaos
fun box ipproto_chaos() : I32 val
Returns
- I32 val
ipproto_cmtp
fun box ipproto_cmtp() : I32 val
Returns
- I32 val
ipproto_comp
fun box ipproto_comp() : I32 val
Returns
- I32 val
ipproto_cphb
fun box ipproto_cphb() : I32 val
Returns
- I32 val
ipproto_cpnx
fun box ipproto_cpnx() : I32 val
Returns
- I32 val
ipproto_dccp
fun box ipproto_dccp() : I32 val
Returns
- I32 val
ipproto_ddp
fun box ipproto_ddp() : I32 val
Returns
- I32 val
ipproto_dgp
fun box ipproto_dgp() : I32 val
Returns
- I32 val
ipproto_divert
fun box ipproto_divert() : I32 val
Returns
- I32 val
ipproto_done
fun box ipproto_done() : I32 val
Returns
- I32 val
ipproto_dstopts
fun box ipproto_dstopts() : I32 val
Returns
- I32 val
ipproto_egp
fun box ipproto_egp() : I32 val
Returns
- I32 val
ipproto_emcon
fun box ipproto_emcon() : I32 val
Returns
- I32 val
ipproto_encap
fun box ipproto_encap() : I32 val
Returns
- I32 val
ipproto_eon
fun box ipproto_eon() : I32 val
Returns
- I32 val
ipproto_esp
fun box ipproto_esp() : I32 val
Returns
- I32 val
ipproto_etherip
fun box ipproto_etherip() : I32 val
Returns
- I32 val
ipproto_fragment
fun box ipproto_fragment() : I32 val
Returns
- I32 val
ipproto_ggp
fun box ipproto_ggp() : I32 val
Returns
- I32 val
ipproto_gmtp
fun box ipproto_gmtp() : I32 val
Returns
- I32 val
ipproto_gre
fun box ipproto_gre() : I32 val
Returns
- I32 val
ipproto_hello
fun box ipproto_hello() : I32 val
Returns
- I32 val
ipproto_hip
fun box ipproto_hip() : I32 val
Returns
- I32 val
ipproto_hmp
fun box ipproto_hmp() : I32 val
Returns
- I32 val
ipproto_hopopts
fun box ipproto_hopopts() : I32 val
Returns
- I32 val
ipproto_icmp
fun box ipproto_icmp() : I32 val
Returns
- I32 val
ipproto_icmpv6
fun box ipproto_icmpv6() : I32 val
Returns
- I32 val
ipproto_idp
fun box ipproto_idp() : I32 val
Returns
- I32 val
ipproto_idpr
fun box ipproto_idpr() : I32 val
Returns
- I32 val
ipproto_idrp
fun box ipproto_idrp() : I32 val
Returns
- I32 val
ipproto_igmp
fun box ipproto_igmp() : I32 val
Returns
- I32 val
ipproto_igp
fun box ipproto_igp() : I32 val
Returns
- I32 val
ipproto_igrp
fun box ipproto_igrp() : I32 val
Returns
- I32 val
ipproto_il
fun box ipproto_il() : I32 val
Returns
- I32 val
ipproto_inlsp
fun box ipproto_inlsp() : I32 val
Returns
- I32 val
ipproto_inp
fun box ipproto_inp() : I32 val
Returns
- I32 val
ipproto_ip
fun box ipproto_ip() : I32 val
Returns
- I32 val
ipproto_ipcomp
fun box ipproto_ipcomp() : I32 val
Returns
- I32 val
ipproto_ipcv
fun box ipproto_ipcv() : I32 val
Returns
- I32 val
ipproto_ipeip
fun box ipproto_ipeip() : I32 val
Returns
- I32 val
ipproto_ipip
fun box ipproto_ipip() : I32 val
Returns
- I32 val
ipproto_ippc
fun box ipproto_ippc() : I32 val
Returns
- I32 val
ipproto_ipv4
fun box ipproto_ipv4() : I32 val
Returns
- I32 val
ipproto_ipv6
fun box ipproto_ipv6() : I32 val
Returns
- I32 val
ipproto_irtp
fun box ipproto_irtp() : I32 val
Returns
- I32 val
ipproto_kryptolan
fun box ipproto_kryptolan() : I32 val
Returns
- I32 val
ipproto_larp
fun box ipproto_larp() : I32 val
Returns
- I32 val
ipproto_leaf1
fun box ipproto_leaf1() : I32 val
Returns
- I32 val
ipproto_leaf2
fun box ipproto_leaf2() : I32 val
Returns
- I32 val
ipproto_max
fun box ipproto_max() : I32 val
Returns
- I32 val
ipproto_maxid
fun box ipproto_maxid() : I32 val
Returns
- I32 val
ipproto_meas
fun box ipproto_meas() : I32 val
Returns
- I32 val
ipproto_mh
fun box ipproto_mh() : I32 val
Returns
- I32 val
ipproto_mhrp
fun box ipproto_mhrp() : I32 val
Returns
- I32 val
ipproto_micp
fun box ipproto_micp() : I32 val
Returns
- I32 val
ipproto_mobile
fun box ipproto_mobile() : I32 val
Returns
- I32 val
ipproto_mpls
fun box ipproto_mpls() : I32 val
Returns
- I32 val
ipproto_mtp
fun box ipproto_mtp() : I32 val
Returns
- I32 val
ipproto_mux
fun box ipproto_mux() : I32 val
Returns
- I32 val
ipproto_nd
fun box ipproto_nd() : I32 val
Returns
- I32 val
ipproto_nhrp
fun box ipproto_nhrp() : I32 val
Returns
- I32 val
ipproto_none
fun box ipproto_none() : I32 val
Returns
- I32 val
ipproto_nsp
fun box ipproto_nsp() : I32 val
Returns
- I32 val
ipproto_nvpii
fun box ipproto_nvpii() : I32 val
Returns
- I32 val
ipproto_old_divert
fun box ipproto_old_divert() : I32 val
Returns
- I32 val
ipproto_ospfigp
fun box ipproto_ospfigp() : I32 val
Returns
- I32 val
ipproto_pfsync
fun box ipproto_pfsync() : I32 val
Returns
- I32 val
ipproto_pgm
fun box ipproto_pgm() : I32 val
Returns
- I32 val
ipproto_pigp
fun box ipproto_pigp() : I32 val
Returns
- I32 val
ipproto_pim
fun box ipproto_pim() : I32 val
Returns
- I32 val
ipproto_prm
fun box ipproto_prm() : I32 val
Returns
- I32 val
ipproto_pup
fun box ipproto_pup() : I32 val
Returns
- I32 val
ipproto_pvp
fun box ipproto_pvp() : I32 val
Returns
- I32 val
ipproto_raw
fun box ipproto_raw() : I32 val
Returns
- I32 val
ipproto_rccmon
fun box ipproto_rccmon() : I32 val
Returns
- I32 val
ipproto_rdp
fun box ipproto_rdp() : I32 val
Returns
- I32 val
ipproto_reserved_253
fun box ipproto_reserved_253() : I32 val
Returns
- I32 val
ipproto_reserved_254
fun box ipproto_reserved_254() : I32 val
Returns
- I32 val
ipproto_routing
fun box ipproto_routing() : I32 val
Returns
- I32 val
ipproto_rsvp
fun box ipproto_rsvp() : I32 val
Returns
- I32 val
ipproto_rvd
fun box ipproto_rvd() : I32 val
Returns
- I32 val
ipproto_satexpak
fun box ipproto_satexpak() : I32 val
Returns
- I32 val
ipproto_satmon
fun box ipproto_satmon() : I32 val
Returns
- I32 val
ipproto_sccsp
fun box ipproto_sccsp() : I32 val
Returns
- I32 val
ipproto_sctp
fun box ipproto_sctp() : I32 val
Returns
- I32 val
ipproto_sdrp
fun box ipproto_sdrp() : I32 val
Returns
- I32 val
ipproto_send
fun box ipproto_send() : I32 val
Returns
- I32 val
ipproto_sep
fun box ipproto_sep() : I32 val
Returns
- I32 val
ipproto_shim6
fun box ipproto_shim6() : I32 val
Returns
- I32 val
ipproto_skip
fun box ipproto_skip() : I32 val
Returns
- I32 val
ipproto_spacer
fun box ipproto_spacer() : I32 val
Returns
- I32 val
ipproto_srpc
fun box ipproto_srpc() : I32 val
Returns
- I32 val
ipproto_st
fun box ipproto_st() : I32 val
Returns
- I32 val
ipproto_svmtp
fun box ipproto_svmtp() : I32 val
Returns
- I32 val
ipproto_swipe
fun box ipproto_swipe() : I32 val
Returns
- I32 val
ipproto_tcf
fun box ipproto_tcf() : I32 val
Returns
- I32 val
ipproto_tcp
fun box ipproto_tcp() : I32 val
Returns
- I32 val
ipproto_tlsp
fun box ipproto_tlsp() : I32 val
Returns
- I32 val
ipproto_tp
fun box ipproto_tp() : I32 val
Returns
- I32 val
ipproto_tpxx
fun box ipproto_tpxx() : I32 val
Returns
- I32 val
ipproto_trunk1
fun box ipproto_trunk1() : I32 val
Returns
- I32 val
ipproto_trunk2
fun box ipproto_trunk2() : I32 val
Returns
- I32 val
ipproto_ttp
fun box ipproto_ttp() : I32 val
Returns
- I32 val
ipproto_udp
fun box ipproto_udp() : I32 val
Returns
- I32 val
ipproto_udplite
fun box ipproto_udplite() : I32 val
Returns
- I32 val
ipproto_vines
fun box ipproto_vines() : I32 val
Returns
- I32 val
ipproto_visa
fun box ipproto_visa() : I32 val
Returns
- I32 val
ipproto_vmtp
fun box ipproto_vmtp() : I32 val
Returns
- I32 val
ipproto_wbexpak
fun box ipproto_wbexpak() : I32 val
Returns
- I32 val
ipproto_wbmon
fun box ipproto_wbmon() : I32 val
Returns
- I32 val
ipproto_wsn
fun box ipproto_wsn() : I32 val
Returns
- I32 val
ipproto_xnet
fun box ipproto_xnet() : I32 val
Returns
- I32 val
ipproto_xtp
fun box ipproto_xtp() : I32 val
Returns
- I32 val
sol_atalk
fun box sol_atalk() : I32 val
Returns
- I32 val
sol_ax25
fun box sol_ax25() : I32 val
Returns
- I32 val
sol_hci_raw
fun box sol_hci_raw() : I32 val
Returns
- I32 val
sol_ipx
fun box sol_ipx() : I32 val
Returns
- I32 val
sol_l2cap
fun box sol_l2cap() : I32 val
Returns
- I32 val
sol_local
fun box sol_local() : I32 val
Returns
- I32 val
sol_ndrvproto
fun box sol_ndrvproto() : I32 val
Returns
- I32 val
sol_netrom
fun box sol_netrom() : I32 val
Returns
- I32 val
sol_rds
fun box sol_rds() : I32 val
Returns
- I32 val
sol_rfcomm
fun box sol_rfcomm() : I32 val
Returns
- I32 val
sol_rose
fun box sol_rose() : I32 val
Returns
- I32 val
sol_sco
fun box sol_sco() : I32 val
Returns
- I32 val
sol_socket
fun box sol_socket() : I32 val
Returns
- I32 val
sol_tipc
fun box sol_tipc() : I32 val
Returns
- I32 val
sol_udp
fun box sol_udp() : I32 val
Returns
- I32 val
af_coip
fun box af_coip() : I32 val
Returns
- I32 val
af_inet
fun box af_inet() : I32 val
Returns
- I32 val
af_inet6
fun box af_inet6() : I32 val
Returns
- I32 val
bluetooth_proto_sco
fun box bluetooth_proto_sco() : I32 val
Returns
- I32 val
dccp_nr_pkt_types
fun box dccp_nr_pkt_types() : I32 val
Returns
- I32 val
dccp_service_list_max_len
fun box dccp_service_list_max_len() : I32 val
Returns
- I32 val
dccp_single_opt_maxlen
fun box dccp_single_opt_maxlen() : I32 val
Returns
- I32 val
dccp_sockopt_available_ccids
fun box dccp_sockopt_available_ccids() : I32 val
Returns
- I32 val
dccp_sockopt_ccid
fun box dccp_sockopt_ccid() : I32 val
Returns
- I32 val
dccp_sockopt_ccid_rx_info
fun box dccp_sockopt_ccid_rx_info() : I32 val
Returns
- I32 val
dccp_sockopt_ccid_tx_info
fun box dccp_sockopt_ccid_tx_info() : I32 val
Returns
- I32 val
dccp_sockopt_change_l
fun box dccp_sockopt_change_l() : I32 val
Returns
- I32 val
dccp_sockopt_change_r
fun box dccp_sockopt_change_r() : I32 val
Returns
- I32 val
dccp_sockopt_get_cur_mps
fun box dccp_sockopt_get_cur_mps() : I32 val
Returns
- I32 val
dccp_sockopt_packet_size
fun box dccp_sockopt_packet_size() : I32 val
Returns
- I32 val
dccp_sockopt_qpolicy_id
fun box dccp_sockopt_qpolicy_id() : I32 val
Returns
- I32 val
dccp_sockopt_qpolicy_txqlen
fun box dccp_sockopt_qpolicy_txqlen() : I32 val
Returns
- I32 val
dccp_sockopt_recv_cscov
fun box dccp_sockopt_recv_cscov() : I32 val
Returns
- I32 val
dccp_sockopt_rx_ccid
fun box dccp_sockopt_rx_ccid() : I32 val
Returns
- I32 val
dccp_sockopt_send_cscov
fun box dccp_sockopt_send_cscov() : I32 val
Returns
- I32 val
dccp_sockopt_server_timewait
fun box dccp_sockopt_server_timewait() : I32 val
Returns
- I32 val
dccp_sockopt_service
fun box dccp_sockopt_service() : I32 val
Returns
- I32 val
dccp_sockopt_tx_ccid
fun box dccp_sockopt_tx_ccid() : I32 val
Returns
- I32 val
dso_acceptmode
fun box dso_acceptmode() : I32 val
Returns
- I32 val
dso_conaccept
fun box dso_conaccept() : I32 val
Returns
- I32 val
dso_conaccess
fun box dso_conaccess() : I32 val
Returns
- I32 val
dso_condata
fun box dso_condata() : I32 val
Returns
- I32 val
dso_conreject
fun box dso_conreject() : I32 val
Returns
- I32 val
dso_cork
fun box dso_cork() : I32 val
Returns
- I32 val
dso_disdata
fun box dso_disdata() : I32 val
Returns
- I32 val
dso_info
fun box dso_info() : I32 val
Returns
- I32 val
dso_linkinfo
fun box dso_linkinfo() : I32 val
Returns
- I32 val
dso_max
fun box dso_max() : I32 val
Returns
- I32 val
dso_maxwindow
fun box dso_maxwindow() : I32 val
Returns
- I32 val
dso_nodelay
fun box dso_nodelay() : I32 val
Returns
- I32 val
dso_seqpacket
fun box dso_seqpacket() : I32 val
Returns
- I32 val
dso_services
fun box dso_services() : I32 val
Returns
- I32 val
dso_stream
fun box dso_stream() : I32 val
Returns
- I32 val
icmp_address
fun box icmp_address() : I32 val
Returns
- I32 val
icmp_addressreply
fun box icmp_addressreply() : I32 val
Returns
- I32 val
icmp_dest_unreach
fun box icmp_dest_unreach() : I32 val
Returns
- I32 val
icmp_echo
fun box icmp_echo() : I32 val
Returns
- I32 val
icmp_echoreply
fun box icmp_echoreply() : I32 val
Returns
- I32 val
icmp_exc_fragtime
fun box icmp_exc_fragtime() : I32 val
Returns
- I32 val
icmp_exc_ttl
fun box icmp_exc_ttl() : I32 val
Returns
- I32 val
icmp_filter
fun box icmp_filter() : I32 val
Returns
- I32 val
icmp_frag_needed
fun box icmp_frag_needed() : I32 val
Returns
- I32 val
icmp_host_ano
fun box icmp_host_ano() : I32 val
Returns
- I32 val
icmp_host_isolated
fun box icmp_host_isolated() : I32 val
Returns
- I32 val
icmp_host_unknown
fun box icmp_host_unknown() : I32 val
Returns
- I32 val
icmp_host_unreach
fun box icmp_host_unreach() : I32 val
Returns
- I32 val
icmp_host_unr_tos
fun box icmp_host_unr_tos() : I32 val
Returns
- I32 val
icmp_info_reply
fun box icmp_info_reply() : I32 val
Returns
- I32 val
icmp_info_request
fun box icmp_info_request() : I32 val
Returns
- I32 val
icmp_net_ano
fun box icmp_net_ano() : I32 val
Returns
- I32 val
icmp_net_unknown
fun box icmp_net_unknown() : I32 val
Returns
- I32 val
icmp_net_unreach
fun box icmp_net_unreach() : I32 val
Returns
- I32 val
icmp_net_unr_tos
fun box icmp_net_unr_tos() : I32 val
Returns
- I32 val
icmp_parameterprob
fun box icmp_parameterprob() : I32 val
Returns
- I32 val
icmp_pkt_filtered
fun box icmp_pkt_filtered() : I32 val
Returns
- I32 val
icmp_port_unreach
fun box icmp_port_unreach() : I32 val
Returns
- I32 val
icmp_prec_cutoff
fun box icmp_prec_cutoff() : I32 val
Returns
- I32 val
icmp_prec_violation
fun box icmp_prec_violation() : I32 val
Returns
- I32 val
icmp_prot_unreach
fun box icmp_prot_unreach() : I32 val
Returns
- I32 val
icmp_redirect
fun box icmp_redirect() : I32 val
Returns
- I32 val
icmp_redir_host
fun box icmp_redir_host() : I32 val
Returns
- I32 val
icmp_redir_hosttos
fun box icmp_redir_hosttos() : I32 val
Returns
- I32 val
icmp_redir_net
fun box icmp_redir_net() : I32 val
Returns
- I32 val
icmp_redir_nettos
fun box icmp_redir_nettos() : I32 val
Returns
- I32 val
icmp_source_quench
fun box icmp_source_quench() : I32 val
Returns
- I32 val
icmp_sr_failed
fun box icmp_sr_failed() : I32 val
Returns
- I32 val
icmp_timestamp
fun box icmp_timestamp() : I32 val
Returns
- I32 val
icmp_timestampreply
fun box icmp_timestampreply() : I32 val
Returns
- I32 val
icmp_time_exceeded
fun box icmp_time_exceeded() : I32 val
Returns
- I32 val
ipctl_acceptsourceroute
fun box ipctl_acceptsourceroute() : I32 val
Returns
- I32 val
ipctl_defmtu
fun box ipctl_defmtu() : I32 val
Returns
- I32 val
ipctl_defttl
fun box ipctl_defttl() : I32 val
Returns
- I32 val
ipctl_directedbroadcast
fun box ipctl_directedbroadcast() : I32 val
Returns
- I32 val
ipctl_fastforwarding
fun box ipctl_fastforwarding() : I32 val
Returns
- I32 val
ipctl_forwarding
fun box ipctl_forwarding() : I32 val
Returns
- I32 val
ipctl_gif_ttl
fun box ipctl_gif_ttl() : I32 val
Returns
- I32 val
ipctl_intrdqdrops
fun box ipctl_intrdqdrops() : I32 val
Returns
- I32 val
ipctl_intrdqmaxlen
fun box ipctl_intrdqmaxlen() : I32 val
Returns
- I32 val
ipctl_intrqdrops
fun box ipctl_intrqdrops() : I32 val
Returns
- I32 val
ipctl_intrqmaxlen
fun box ipctl_intrqmaxlen() : I32 val
Returns
- I32 val
ipctl_keepfaith
fun box ipctl_keepfaith() : I32 val
Returns
- I32 val
ipctl_maxid
fun box ipctl_maxid() : I32 val
Returns
- I32 val
ipctl_rtexpire
fun box ipctl_rtexpire() : I32 val
Returns
- I32 val
ipctl_rtmaxcache
fun box ipctl_rtmaxcache() : I32 val
Returns
- I32 val
ipctl_rtminexpire
fun box ipctl_rtminexpire() : I32 val
Returns
- I32 val
ipctl_sendredirects
fun box ipctl_sendredirects() : I32 val
Returns
- I32 val
ipctl_sourceroute
fun box ipctl_sourceroute() : I32 val
Returns
- I32 val
ipctl_stats
fun box ipctl_stats() : I32 val
Returns
- I32 val
ipport_ephemeralfirst
fun box ipport_ephemeralfirst() : I32 val
Returns
- I32 val
ipport_ephemerallast
fun box ipport_ephemerallast() : I32 val
Returns
- I32 val
ipport_hifirstauto
fun box ipport_hifirstauto() : I32 val
Returns
- I32 val
ipport_hilastauto
fun box ipport_hilastauto() : I32 val
Returns
- I32 val
ipport_max
fun box ipport_max() : I32 val
Returns
- I32 val
ipport_reserved
fun box ipport_reserved() : I32 val
Returns
- I32 val
ipport_reservedstart
fun box ipport_reservedstart() : I32 val
Returns
- I32 val
ipport_userreserved
fun box ipport_userreserved() : I32 val
Returns
- I32 val
ipv6_2292dstopts
fun box ipv6_2292dstopts() : I32 val
Returns
- I32 val
ipv6_2292hoplimit
fun box ipv6_2292hoplimit() : I32 val
Returns
- I32 val
ipv6_2292hopopts
fun box ipv6_2292hopopts() : I32 val
Returns
- I32 val
ipv6_2292pktinfo
fun box ipv6_2292pktinfo() : I32 val
Returns
- I32 val
ipv6_2292pktoptions
fun box ipv6_2292pktoptions() : I32 val
Returns
- I32 val
ipv6_2292rthdr
fun box ipv6_2292rthdr() : I32 val
Returns
- I32 val
ipv6_addrform
fun box ipv6_addrform() : I32 val
Returns
- I32 val
ipv6_addr_preferences
fun box ipv6_addr_preferences() : I32 val
Returns
- I32 val
ipv6_add_membership
fun box ipv6_add_membership() : I32 val
Returns
- I32 val
ipv6_authhdr
fun box ipv6_authhdr() : I32 val
Returns
- I32 val
ipv6_autoflowlabel
fun box ipv6_autoflowlabel() : I32 val
Returns
- I32 val
ipv6_checksum
fun box ipv6_checksum() : I32 val
Returns
- I32 val
ipv6_dontfrag
fun box ipv6_dontfrag() : I32 val
Returns
- I32 val
ipv6_drop_membership
fun box ipv6_drop_membership() : I32 val
Returns
- I32 val
ipv6_dstopts
fun box ipv6_dstopts() : I32 val
Returns
- I32 val
ipv6_flowinfo
fun box ipv6_flowinfo() : I32 val
Returns
- I32 val
ipv6_flowinfo_flowlabel
fun box ipv6_flowinfo_flowlabel() : I32 val
Returns
- I32 val
ipv6_flowinfo_priority
fun box ipv6_flowinfo_priority() : I32 val
Returns
- I32 val
ipv6_flowinfo_send
fun box ipv6_flowinfo_send() : I32 val
Returns
- I32 val
ipv6_flowlabel_mgr
fun box ipv6_flowlabel_mgr() : I32 val
Returns
- I32 val
ipv6_fl_a_get
fun box ipv6_fl_a_get() : I32 val
Returns
- I32 val
ipv6_fl_a_put
fun box ipv6_fl_a_put() : I32 val
Returns
- I32 val
ipv6_fl_a_renew
fun box ipv6_fl_a_renew() : I32 val
Returns
- I32 val
ipv6_fl_f_create
fun box ipv6_fl_f_create() : I32 val
Returns
- I32 val
ipv6_fl_f_excl
fun box ipv6_fl_f_excl() : I32 val
Returns
- I32 val
ipv6_fl_f_reflect
fun box ipv6_fl_f_reflect() : I32 val
Returns
- I32 val
ipv6_fl_f_remote
fun box ipv6_fl_f_remote() : I32 val
Returns
- I32 val
ipv6_fl_s_any
fun box ipv6_fl_s_any() : I32 val
Returns
- I32 val
ipv6_fl_s_excl
fun box ipv6_fl_s_excl() : I32 val
Returns
- I32 val
ipv6_fl_s_none
fun box ipv6_fl_s_none() : I32 val
Returns
- I32 val
ipv6_fl_s_process
fun box ipv6_fl_s_process() : I32 val
Returns
- I32 val
ipv6_fl_s_user
fun box ipv6_fl_s_user() : I32 val
Returns
- I32 val
ipv6_hoplimit
fun box ipv6_hoplimit() : I32 val
Returns
- I32 val
ipv6_hopopts
fun box ipv6_hopopts() : I32 val
Returns
- I32 val
ipv6_ipsec_policy
fun box ipv6_ipsec_policy() : I32 val
Returns
- I32 val
ipv6_join_anycast
fun box ipv6_join_anycast() : I32 val
Returns
- I32 val
ipv6_leave_anycast
fun box ipv6_leave_anycast() : I32 val
Returns
- I32 val
ipv6_minhopcount
fun box ipv6_minhopcount() : I32 val
Returns
- I32 val
ipv6_mtu
fun box ipv6_mtu() : I32 val
Returns
- I32 val
ipv6_mtu_discover
fun box ipv6_mtu_discover() : I32 val
Returns
- I32 val
ipv6_multicast_hops
fun box ipv6_multicast_hops() : I32 val
Returns
- I32 val
ipv6_multicast_if
fun box ipv6_multicast_if() : I32 val
Returns
- I32 val
ipv6_multicast_loop
fun box ipv6_multicast_loop() : I32 val
Returns
- I32 val
ipv6_nexthop
fun box ipv6_nexthop() : I32 val
Returns
- I32 val
ipv6_origdstaddr
fun box ipv6_origdstaddr() : I32 val
Returns
- I32 val
ipv6_pathmtu
fun box ipv6_pathmtu() : I32 val
Returns
- I32 val
ipv6_pktinfo
fun box ipv6_pktinfo() : I32 val
Returns
- I32 val
ipv6_pmtudisc_do
fun box ipv6_pmtudisc_do() : I32 val
Returns
- I32 val
ipv6_pmtudisc_dont
fun box ipv6_pmtudisc_dont() : I32 val
Returns
- I32 val
ipv6_pmtudisc_interface
fun box ipv6_pmtudisc_interface() : I32 val
Returns
- I32 val
ipv6_pmtudisc_omit
fun box ipv6_pmtudisc_omit() : I32 val
Returns
- I32 val
ipv6_pmtudisc_probe
fun box ipv6_pmtudisc_probe() : I32 val
Returns
- I32 val
ipv6_pmtudisc_want
fun box ipv6_pmtudisc_want() : I32 val
Returns
- I32 val
ipv6_prefer_src_cga
fun box ipv6_prefer_src_cga() : I32 val
Returns
- I32 val
ipv6_prefer_src_coa
fun box ipv6_prefer_src_coa() : I32 val
Returns
- I32 val
ipv6_prefer_src_home
fun box ipv6_prefer_src_home() : I32 val
Returns
- I32 val
ipv6_prefer_src_noncga
fun box ipv6_prefer_src_noncga() : I32 val
Returns
- I32 val
ipv6_prefer_src_public
fun box ipv6_prefer_src_public() : I32 val
Returns
- I32 val
ipv6_prefer_src_pubtmp_default
fun box ipv6_prefer_src_pubtmp_default() : I32 val
Returns
- I32 val
ipv6_prefer_src_tmp
fun box ipv6_prefer_src_tmp() : I32 val
Returns
- I32 val
ipv6_priority_10
fun box ipv6_priority_10() : I32 val
Returns
- I32 val
ipv6_priority_11
fun box ipv6_priority_11() : I32 val
Returns
- I32 val
ipv6_priority_12
fun box ipv6_priority_12() : I32 val
Returns
- I32 val
ipv6_priority_13
fun box ipv6_priority_13() : I32 val
Returns
- I32 val
ipv6_priority_14
fun box ipv6_priority_14() : I32 val
Returns
- I32 val
ipv6_priority_15
fun box ipv6_priority_15() : I32 val
Returns
- I32 val
ipv6_priority_8
fun box ipv6_priority_8() : I32 val
Returns
- I32 val
ipv6_priority_9
fun box ipv6_priority_9() : I32 val
Returns
- I32 val
ipv6_priority_bulk
fun box ipv6_priority_bulk() : I32 val
Returns
- I32 val
ipv6_priority_control
fun box ipv6_priority_control() : I32 val
Returns
- I32 val
ipv6_priority_filler
fun box ipv6_priority_filler() : I32 val
Returns
- I32 val
ipv6_priority_interactive
fun box ipv6_priority_interactive() : I32 val
Returns
- I32 val
ipv6_priority_reserved1
fun box ipv6_priority_reserved1() : I32 val
Returns
- I32 val
ipv6_priority_reserved2
fun box ipv6_priority_reserved2() : I32 val
Returns
- I32 val
ipv6_priority_unattended
fun box ipv6_priority_unattended() : I32 val
Returns
- I32 val
ipv6_priority_uncharacterized
fun box ipv6_priority_uncharacterized() : I32 val
Returns
- I32 val
ipv6_recvdstopts
fun box ipv6_recvdstopts() : I32 val
Returns
- I32 val
ipv6_recverr
fun box ipv6_recverr() : I32 val
Returns
- I32 val
ipv6_recvhoplimit
fun box ipv6_recvhoplimit() : I32 val
Returns
- I32 val
ipv6_recvhopopts
fun box ipv6_recvhopopts() : I32 val
Returns
- I32 val
ipv6_recvorigdstaddr
fun box ipv6_recvorigdstaddr() : I32 val
Returns
- I32 val
ipv6_recvpathmtu
fun box ipv6_recvpathmtu() : I32 val
Returns
- I32 val
ipv6_recvpktinfo
fun box ipv6_recvpktinfo() : I32 val
Returns
- I32 val
ipv6_recvrthdr
fun box ipv6_recvrthdr() : I32 val
Returns
- I32 val
ipv6_recvtclass
fun box ipv6_recvtclass() : I32 val
Returns
- I32 val
ipv6_router_alert
fun box ipv6_router_alert() : I32 val
Returns
- I32 val
ipv6_rthdr
fun box ipv6_rthdr() : I32 val
Returns
- I32 val
ipv6_rthdrdstopts
fun box ipv6_rthdrdstopts() : I32 val
Returns
- I32 val
ipv6_tclass
fun box ipv6_tclass() : I32 val
Returns
- I32 val
ipv6_tlv_hao
fun box ipv6_tlv_hao() : I32 val
Returns
- I32 val
ipv6_tlv_jumbo
fun box ipv6_tlv_jumbo() : I32 val
Returns
- I32 val
ipv6_tlv_pad1
fun box ipv6_tlv_pad1() : I32 val
Returns
- I32 val
ipv6_tlv_padn
fun box ipv6_tlv_padn() : I32 val
Returns
- I32 val
ipv6_tlv_routeralert
fun box ipv6_tlv_routeralert() : I32 val
Returns
- I32 val
ipv6_transparent
fun box ipv6_transparent() : I32 val
Returns
- I32 val
ipv6_unicast_hops
fun box ipv6_unicast_hops() : I32 val
Returns
- I32 val
ipv6_unicast_if
fun box ipv6_unicast_if() : I32 val
Returns
- I32 val
ipv6_use_min_mtu
fun box ipv6_use_min_mtu() : I32 val
Returns
- I32 val
ipv6_v6only
fun box ipv6_v6only() : I32 val
Returns
- I32 val
ipv6_xfrm_policy
fun box ipv6_xfrm_policy() : I32 val
Returns
- I32 val
ipx_address
fun box ipx_address() : I32 val
Returns
- I32 val
ipx_address_notify
fun box ipx_address_notify() : I32 val
Returns
- I32 val
ipx_crtitf
fun box ipx_crtitf() : I32 val
Returns
- I32 val
ipx_dltitf
fun box ipx_dltitf() : I32 val
Returns
- I32 val
ipx_dstype
fun box ipx_dstype() : I32 val
Returns
- I32 val
ipx_extended_address
fun box ipx_extended_address() : I32 val
Returns
- I32 val
ipx_filterptype
fun box ipx_filterptype() : I32 val
Returns
- I32 val
ipx_frame_8022
fun box ipx_frame_8022() : I32 val
Returns
- I32 val
ipx_frame_8023
fun box ipx_frame_8023() : I32 val
Returns
- I32 val
ipx_frame_etherii
fun box ipx_frame_etherii() : I32 val
Returns
- I32 val
ipx_frame_none
fun box ipx_frame_none() : I32 val
Returns
- I32 val
ipx_frame_snap
fun box ipx_frame_snap() : I32 val
Returns
- I32 val
ipx_frame_tr_8022
fun box ipx_frame_tr_8022() : I32 val
Returns
- I32 val
ipx_getnetinfo
fun box ipx_getnetinfo() : I32 val
Returns
- I32 val
ipx_getnetinfo_norip
fun box ipx_getnetinfo_norip() : I32 val
Returns
- I32 val
ipx_immediatespxack
fun box ipx_immediatespxack() : I32 val
Returns
- I32 val
ipx_internal
fun box ipx_internal() : I32 val
Returns
- I32 val
ipx_maxsize
fun box ipx_maxsize() : I32 val
Returns
- I32 val
ipx_max_adapter_num
fun box ipx_max_adapter_num() : I32 val
Returns
- I32 val
ipx_mtu
fun box ipx_mtu() : I32 val
Returns
- I32 val
ipx_node_len
fun box ipx_node_len() : I32 val
Returns
- I32 val
ipx_primary
fun box ipx_primary() : I32 val
Returns
- I32 val
ipx_ptype
fun box ipx_ptype() : I32 val
Returns
- I32 val
ipx_receive_broadcast
fun box ipx_receive_broadcast() : I32 val
Returns
- I32 val
ipx_recvhdr
fun box ipx_recvhdr() : I32 val
Returns
- I32 val
ipx_reripnetnumber
fun box ipx_reripnetnumber() : I32 val
Returns
- I32 val
ipx_route_no_router
fun box ipx_route_no_router() : I32 val
Returns
- I32 val
ipx_rt_8022
fun box ipx_rt_8022() : I32 val
Returns
- I32 val
ipx_rt_bluebook
fun box ipx_rt_bluebook() : I32 val
Returns
- I32 val
ipx_rt_routed
fun box ipx_rt_routed() : I32 val
Returns
- I32 val
ipx_rt_snap
fun box ipx_rt_snap() : I32 val
Returns
- I32 val
ipx_special_none
fun box ipx_special_none() : I32 val
Returns
- I32 val
ipx_spxgetconnectionstatus
fun box ipx_spxgetconnectionstatus() : I32 val
Returns
- I32 val
ipx_stopfilterptype
fun box ipx_stopfilterptype() : I32 val
Returns
- I32 val
ipx_type
fun box ipx_type() : I32 val
Returns
- I32 val
ip_add_membership
fun box ip_add_membership() : I32 val
Returns
- I32 val
ip_add_source_membership
fun box ip_add_source_membership() : I32 val
Returns
- I32 val
ip_bindany
fun box ip_bindany() : I32 val
Returns
- I32 val
ip_bindmulti
fun box ip_bindmulti() : I32 val
Returns
- I32 val
ip_bind_address_no_port
fun box ip_bind_address_no_port() : I32 val
Returns
- I32 val
ip_block_source
fun box ip_block_source() : I32 val
Returns
- I32 val
ip_bound_if
fun box ip_bound_if() : I32 val
Returns
- I32 val
ip_checksum
fun box ip_checksum() : I32 val
Returns
- I32 val
ip_default_multicast_loop
fun box ip_default_multicast_loop() : I32 val
Returns
- I32 val
ip_default_multicast_ttl
fun box ip_default_multicast_ttl() : I32 val
Returns
- I32 val
ip_dontfrag
fun box ip_dontfrag() : I32 val
Returns
- I32 val
ip_drop_membership
fun box ip_drop_membership() : I32 val
Returns
- I32 val
ip_drop_source_membership
fun box ip_drop_source_membership() : I32 val
Returns
- I32 val
ip_dummynet3
fun box ip_dummynet3() : I32 val
Returns
- I32 val
ip_dummynet_configure
fun box ip_dummynet_configure() : I32 val
Returns
- I32 val
ip_dummynet_del
fun box ip_dummynet_del() : I32 val
Returns
- I32 val
ip_dummynet_flush
fun box ip_dummynet_flush() : I32 val
Returns
- I32 val
ip_dummynet_get
fun box ip_dummynet_get() : I32 val
Returns
- I32 val
ip_faith
fun box ip_faith() : I32 val
Returns
- I32 val
ip_flowid
fun box ip_flowid() : I32 val
Returns
- I32 val
ip_flowtype
fun box ip_flowtype() : I32 val
Returns
- I32 val
ip_freebind
fun box ip_freebind() : I32 val
Returns
- I32 val
ip_fw3
fun box ip_fw3() : I32 val
Returns
- I32 val
ip_fw_add
fun box ip_fw_add() : I32 val
Returns
- I32 val
ip_fw_del
fun box ip_fw_del() : I32 val
Returns
- I32 val
ip_fw_flush
fun box ip_fw_flush() : I32 val
Returns
- I32 val
ip_fw_get
fun box ip_fw_get() : I32 val
Returns
- I32 val
ip_fw_nat_cfg
fun box ip_fw_nat_cfg() : I32 val
Returns
- I32 val
ip_fw_nat_del
fun box ip_fw_nat_del() : I32 val
Returns
- I32 val
ip_fw_nat_get_config
fun box ip_fw_nat_get_config() : I32 val
Returns
- I32 val
ip_fw_nat_get_log
fun box ip_fw_nat_get_log() : I32 val
Returns
- I32 val
ip_fw_resetlog
fun box ip_fw_resetlog() : I32 val
Returns
- I32 val
ip_fw_table_add
fun box ip_fw_table_add() : I32 val
Returns
- I32 val
ip_fw_table_del
fun box ip_fw_table_del() : I32 val
Returns
- I32 val
ip_fw_table_flush
fun box ip_fw_table_flush() : I32 val
Returns
- I32 val
ip_fw_table_getsize
fun box ip_fw_table_getsize() : I32 val
Returns
- I32 val
ip_fw_table_list
fun box ip_fw_table_list() : I32 val
Returns
- I32 val
ip_fw_zero
fun box ip_fw_zero() : I32 val
Returns
- I32 val
ip_hdrincl
fun box ip_hdrincl() : I32 val
Returns
- I32 val
ip_ipsec_policy
fun box ip_ipsec_policy() : I32 val
Returns
- I32 val
ip_max_group_src_filter
fun box ip_max_group_src_filter() : I32 val
Returns
- I32 val
ip_max_memberships
fun box ip_max_memberships() : I32 val
Returns
- I32 val
ip_max_sock_mute_filter
fun box ip_max_sock_mute_filter() : I32 val
Returns
- I32 val
ip_max_sock_src_filter
fun box ip_max_sock_src_filter() : I32 val
Returns
- I32 val
ip_max_source_filter
fun box ip_max_source_filter() : I32 val
Returns
- I32 val
ip_minttl
fun box ip_minttl() : I32 val
Returns
- I32 val
ip_min_memberships
fun box ip_min_memberships() : I32 val
Returns
- I32 val
ip_msfilter
fun box ip_msfilter() : I32 val
Returns
- I32 val
ip_mtu
fun box ip_mtu() : I32 val
Returns
- I32 val
ip_mtu_discover
fun box ip_mtu_discover() : I32 val
Returns
- I32 val
ip_multicast_all
fun box ip_multicast_all() : I32 val
Returns
- I32 val
ip_multicast_if
fun box ip_multicast_if() : I32 val
Returns
- I32 val
ip_multicast_ifindex
fun box ip_multicast_ifindex() : I32 val
Returns
- I32 val
ip_multicast_loop
fun box ip_multicast_loop() : I32 val
Returns
- I32 val
ip_multicast_ttl
fun box ip_multicast_ttl() : I32 val
Returns
- I32 val
ip_multicast_vif
fun box ip_multicast_vif() : I32 val
Returns
- I32 val
ip_nat_xxx
fun box ip_nat_xxx() : I32 val
Returns
- I32 val
ip_nodefrag
fun box ip_nodefrag() : I32 val
Returns
- I32 val
ip_old_fw_add
fun box ip_old_fw_add() : I32 val
Returns
- I32 val
ip_old_fw_del
fun box ip_old_fw_del() : I32 val
Returns
- I32 val
ip_old_fw_flush
fun box ip_old_fw_flush() : I32 val
Returns
- I32 val
ip_old_fw_get
fun box ip_old_fw_get() : I32 val
Returns
- I32 val
ip_old_fw_resetlog
fun box ip_old_fw_resetlog() : I32 val
Returns
- I32 val
ip_old_fw_zero
fun box ip_old_fw_zero() : I32 val
Returns
- I32 val
ip_onesbcast
fun box ip_onesbcast() : I32 val
Returns
- I32 val
ip_options
fun box ip_options() : I32 val
Returns
- I32 val
ip_origdstaddr
fun box ip_origdstaddr() : I32 val
Returns
- I32 val
ip_passsec
fun box ip_passsec() : I32 val
Returns
- I32 val
ip_pktinfo
fun box ip_pktinfo() : I32 val
Returns
- I32 val
ip_pktoptions
fun box ip_pktoptions() : I32 val
Returns
- I32 val
ip_pmtudisc_do
fun box ip_pmtudisc_do() : I32 val
Returns
- I32 val
ip_pmtudisc_dont
fun box ip_pmtudisc_dont() : I32 val
Returns
- I32 val
ip_pmtudisc_interface
fun box ip_pmtudisc_interface() : I32 val
Returns
- I32 val
ip_pmtudisc_omit
fun box ip_pmtudisc_omit() : I32 val
Returns
- I32 val
ip_pmtudisc_probe
fun box ip_pmtudisc_probe() : I32 val
Returns
- I32 val
ip_pmtudisc_want
fun box ip_pmtudisc_want() : I32 val
Returns
- I32 val
ip_portrange
fun box ip_portrange() : I32 val
Returns
- I32 val
ip_portrange_default
fun box ip_portrange_default() : I32 val
Returns
- I32 val
ip_portrange_high
fun box ip_portrange_high() : I32 val
Returns
- I32 val
ip_portrange_low
fun box ip_portrange_low() : I32 val
Returns
- I32 val
ip_recvdstaddr
fun box ip_recvdstaddr() : I32 val
Returns
- I32 val
ip_recverr
fun box ip_recverr() : I32 val
Returns
- I32 val
ip_recvflowid
fun box ip_recvflowid() : I32 val
Returns
- I32 val
ip_recvif
fun box ip_recvif() : I32 val
Returns
- I32 val
ip_recvopts
fun box ip_recvopts() : I32 val
Returns
- I32 val
ip_recvorigdstaddr
fun box ip_recvorigdstaddr() : I32 val
Returns
- I32 val
ip_recvpktinfo
fun box ip_recvpktinfo() : I32 val
Returns
- I32 val
ip_recvretopts
fun box ip_recvretopts() : I32 val
Returns
- I32 val
ip_recvrssbucketid
fun box ip_recvrssbucketid() : I32 val
Returns
- I32 val
ip_recvtos
fun box ip_recvtos() : I32 val
Returns
- I32 val
ip_recvttl
fun box ip_recvttl() : I32 val
Returns
- I32 val
ip_retopts
fun box ip_retopts() : I32 val
Returns
- I32 val
ip_router_alert
fun box ip_router_alert() : I32 val
Returns
- I32 val
ip_rssbucketid
fun box ip_rssbucketid() : I32 val
Returns
- I32 val
ip_rss_listen_bucket
fun box ip_rss_listen_bucket() : I32 val
Returns
- I32 val
ip_rsvp_off
fun box ip_rsvp_off() : I32 val
Returns
- I32 val
ip_rsvp_on
fun box ip_rsvp_on() : I32 val
Returns
- I32 val
ip_rsvp_vif_off
fun box ip_rsvp_vif_off() : I32 val
Returns
- I32 val
ip_rsvp_vif_on
fun box ip_rsvp_vif_on() : I32 val
Returns
- I32 val
ip_sendsrcaddr
fun box ip_sendsrcaddr() : I32 val
Returns
- I32 val
ip_striphdr
fun box ip_striphdr() : I32 val
Returns
- I32 val
ip_tos
fun box ip_tos() : I32 val
Returns
- I32 val
ip_traffic_mgt_background
fun box ip_traffic_mgt_background() : I32 val
Returns
- I32 val
ip_transparent
fun box ip_transparent() : I32 val
Returns
- I32 val
ip_ttl
fun box ip_ttl() : I32 val
Returns
- I32 val
ip_unblock_source
fun box ip_unblock_source() : I32 val
Returns
- I32 val
ip_unicast_if
fun box ip_unicast_if() : I32 val
Returns
- I32 val
ip_xfrm_policy
fun box ip_xfrm_policy() : I32 val
Returns
- I32 val
local_connwait
fun box local_connwait() : I32 val
Returns
- I32 val
local_creds
fun box local_creds() : I32 val
Returns
- I32 val
local_peercred
fun box local_peercred() : I32 val
Returns
- I32 val
local_peerepid
fun box local_peerepid() : I32 val
Returns
- I32 val
local_peereuuid
fun box local_peereuuid() : I32 val
Returns
- I32 val
local_peerpid
fun box local_peerpid() : I32 val
Returns
- I32 val
local_peeruuid
fun box local_peeruuid() : I32 val
Returns
- I32 val
local_vendor
fun box local_vendor() : I32 val
Returns
- I32 val
max_tcpoptlen
fun box max_tcpoptlen() : I32 val
Returns
- I32 val
mcast_block_source
fun box mcast_block_source() : I32 val
Returns
- I32 val
mcast_exclude
fun box mcast_exclude() : I32 val
Returns
- I32 val
mcast_include
fun box mcast_include() : I32 val
Returns
- I32 val
mcast_join_group
fun box mcast_join_group() : I32 val
Returns
- I32 val
mcast_join_source_group
fun box mcast_join_source_group() : I32 val
Returns
- I32 val
mcast_leave_group
fun box mcast_leave_group() : I32 val
Returns
- I32 val
mcast_leave_source_group
fun box mcast_leave_source_group() : I32 val
Returns
- I32 val
mcast_msfilter
fun box mcast_msfilter() : I32 val
Returns
- I32 val
mcast_unblock_source
fun box mcast_unblock_source() : I32 val
Returns
- I32 val
mcast_undefined
fun box mcast_undefined() : I32 val
Returns
- I32 val
mrt_add_bw_upcall
fun box mrt_add_bw_upcall() : I32 val
Returns
- I32 val
mrt_add_mfc
fun box mrt_add_mfc() : I32 val
Returns
- I32 val
mrt_add_vif
fun box mrt_add_vif() : I32 val
Returns
- I32 val
mrt_api_config
fun box mrt_api_config() : I32 val
Returns
- I32 val
mrt_api_flags_all
fun box mrt_api_flags_all() : I32 val
Returns
- I32 val
mrt_api_support
fun box mrt_api_support() : I32 val
Returns
- I32 val
mrt_assert
fun box mrt_assert() : I32 val
Returns
- I32 val
mrt_del_bw_upcall
fun box mrt_del_bw_upcall() : I32 val
Returns
- I32 val
mrt_del_mfc
fun box mrt_del_mfc() : I32 val
Returns
- I32 val
mrt_del_vif
fun box mrt_del_vif() : I32 val
Returns
- I32 val
mrt_done
fun box mrt_done() : I32 val
Returns
- I32 val
mrt_init
fun box mrt_init() : I32 val
Returns
- I32 val
mrt_mfc_bw_upcall
fun box mrt_mfc_bw_upcall() : I32 val
Returns
- I32 val
mrt_mfc_flags_all
fun box mrt_mfc_flags_all() : I32 val
Returns
- I32 val
mrt_mfc_flags_border_vif
fun box mrt_mfc_flags_border_vif() : I32 val
Returns
- I32 val
mrt_mfc_flags_disable_wrongvif
fun box mrt_mfc_flags_disable_wrongvif() : I32 val
Returns
- I32 val
mrt_mfc_rp
fun box mrt_mfc_rp() : I32 val
Returns
- I32 val
mrt_pim
fun box mrt_pim() : I32 val
Returns
- I32 val
mrt_version
fun box mrt_version() : I32 val
Returns
- I32 val
msg_notification
fun box msg_notification() : I32 val
Returns
- I32 val
msg_socallbck
fun box msg_socallbck() : I32 val
Returns
- I32 val
ndrvproto_ndrv
fun box ndrvproto_ndrv() : I32 val
Returns
- I32 val
ndrv_addmulticast
fun box ndrv_addmulticast() : I32 val
Returns
- I32 val
ndrv_deldmxspec
fun box ndrv_deldmxspec() : I32 val
Returns
- I32 val
ndrv_delmulticast
fun box ndrv_delmulticast() : I32 val
Returns
- I32 val
ndrv_demuxtype_ethertype
fun box ndrv_demuxtype_ethertype() : I32 val
Returns
- I32 val
ndrv_demuxtype_sap
fun box ndrv_demuxtype_sap() : I32 val
Returns
- I32 val
ndrv_demuxtype_snap
fun box ndrv_demuxtype_snap() : I32 val
Returns
- I32 val
ndrv_dmux_max_descr
fun box ndrv_dmux_max_descr() : I32 val
Returns
- I32 val
ndrv_protocol_desc_vers
fun box ndrv_protocol_desc_vers() : I32 val
Returns
- I32 val
ndrv_setdmxspec
fun box ndrv_setdmxspec() : I32 val
Returns
- I32 val
netlink_add_membership
fun box netlink_add_membership() : I32 val
Returns
- I32 val
netlink_audit
fun box netlink_audit() : I32 val
Returns
- I32 val
netlink_broadcast_error
fun box netlink_broadcast_error() : I32 val
Returns
- I32 val
netlink_cap_ack
fun box netlink_cap_ack() : I32 val
Returns
- I32 val
netlink_connector
fun box netlink_connector() : I32 val
Returns
- I32 val
netlink_crypto
fun box netlink_crypto() : I32 val
Returns
- I32 val
netlink_dnrtmsg
fun box netlink_dnrtmsg() : I32 val
Returns
- I32 val
netlink_drop_membership
fun box netlink_drop_membership() : I32 val
Returns
- I32 val
netlink_ecryptfs
fun box netlink_ecryptfs() : I32 val
Returns
- I32 val
netlink_fib_lookup
fun box netlink_fib_lookup() : I32 val
Returns
- I32 val
netlink_firewall
fun box netlink_firewall() : I32 val
Returns
- I32 val
netlink_generic
fun box netlink_generic() : I32 val
Returns
- I32 val
netlink_inet_diag
fun box netlink_inet_diag() : I32 val
Returns
- I32 val
netlink_ip6_fw
fun box netlink_ip6_fw() : I32 val
Returns
- I32 val
netlink_iscsi
fun box netlink_iscsi() : I32 val
Returns
- I32 val
netlink_kobject_uevent
fun box netlink_kobject_uevent() : I32 val
Returns
- I32 val
netlink_listen_all_nsid
fun box netlink_listen_all_nsid() : I32 val
Returns
- I32 val
netlink_list_memberships
fun box netlink_list_memberships() : I32 val
Returns
- I32 val
netlink_netfilter
fun box netlink_netfilter() : I32 val
Returns
- I32 val
netlink_nflog
fun box netlink_nflog() : I32 val
Returns
- I32 val
netlink_no_enobufs
fun box netlink_no_enobufs() : I32 val
Returns
- I32 val
netlink_pktinfo
fun box netlink_pktinfo() : I32 val
Returns
- I32 val
netlink_rdma
fun box netlink_rdma() : I32 val
Returns
- I32 val
netlink_route
fun box netlink_route() : I32 val
Returns
- I32 val
netlink_rx_ring
fun box netlink_rx_ring() : I32 val
Returns
- I32 val
netlink_scsitransport
fun box netlink_scsitransport() : I32 val
Returns
- I32 val
netlink_selinux
fun box netlink_selinux() : I32 val
Returns
- I32 val
netlink_sock_diag
fun box netlink_sock_diag() : I32 val
Returns
- I32 val
netlink_tx_ring
fun box netlink_tx_ring() : I32 val
Returns
- I32 val
netlink_unused
fun box netlink_unused() : I32 val
Returns
- I32 val
netlink_usersock
fun box netlink_usersock() : I32 val
Returns
- I32 val
netlink_xfrm
fun box netlink_xfrm() : I32 val
Returns
- I32 val
netrom_idle
fun box netrom_idle() : I32 val
Returns
- I32 val
netrom_kill
fun box netrom_kill() : I32 val
Returns
- I32 val
netrom_n2
fun box netrom_n2() : I32 val
Returns
- I32 val
netrom_neigh
fun box netrom_neigh() : I32 val
Returns
- I32 val
netrom_node
fun box netrom_node() : I32 val
Returns
- I32 val
netrom_paclen
fun box netrom_paclen() : I32 val
Returns
- I32 val
netrom_t1
fun box netrom_t1() : I32 val
Returns
- I32 val
netrom_t2
fun box netrom_t2() : I32 val
Returns
- I32 val
netrom_t4
fun box netrom_t4() : I32 val
Returns
- I32 val
nrdv_multicast_addrs_per_sock
fun box nrdv_multicast_addrs_per_sock() : I32 val
Returns
- I32 val
pvd_config
fun box pvd_config() : I32 val
Returns
- I32 val
rds_cancel_sent_to
fun box rds_cancel_sent_to() : I32 val
Returns
- I32 val
rds_cmsg_atomic_cswp
fun box rds_cmsg_atomic_cswp() : I32 val
Returns
- I32 val
rds_cmsg_atomic_fadd
fun box rds_cmsg_atomic_fadd() : I32 val
Returns
- I32 val
rds_cmsg_cong_update
fun box rds_cmsg_cong_update() : I32 val
Returns
- I32 val
rds_cmsg_masked_atomic_cswp
fun box rds_cmsg_masked_atomic_cswp() : I32 val
Returns
- I32 val
rds_cmsg_masked_atomic_fadd
fun box rds_cmsg_masked_atomic_fadd() : I32 val
Returns
- I32 val
rds_cmsg_rdma_args
fun box rds_cmsg_rdma_args() : I32 val
Returns
- I32 val
rds_cmsg_rdma_dest
fun box rds_cmsg_rdma_dest() : I32 val
Returns
- I32 val
rds_cmsg_rdma_map
fun box rds_cmsg_rdma_map() : I32 val
Returns
- I32 val
rds_cmsg_rdma_status
fun box rds_cmsg_rdma_status() : I32 val
Returns
- I32 val
rds_cong_monitor
fun box rds_cong_monitor() : I32 val
Returns
- I32 val
rds_cong_monitor_size
fun box rds_cong_monitor_size() : I32 val
Returns
- I32 val
rds_free_mr
fun box rds_free_mr() : I32 val
Returns
- I32 val
rds_get_mr
fun box rds_get_mr() : I32 val
Returns
- I32 val
rds_get_mr_for_dest
fun box rds_get_mr_for_dest() : I32 val
Returns
- I32 val
rds_ib_abi_version
fun box rds_ib_abi_version() : I32 val
Returns
- I32 val
rds_ib_gid_len
fun box rds_ib_gid_len() : I32 val
Returns
- I32 val
rds_info_connections
fun box rds_info_connections() : I32 val
Returns
- I32 val
rds_info_connection_flag_connected
fun box rds_info_connection_flag_connected() : I32 val
Returns
- I32 val
rds_info_connection_flag_connecting
fun box rds_info_connection_flag_connecting() : I32 val
Returns
- I32 val
rds_info_connection_flag_sending
fun box rds_info_connection_flag_sending() : I32 val
Returns
- I32 val
rds_info_connection_stats
fun box rds_info_connection_stats() : I32 val
Returns
- I32 val
rds_info_counters
fun box rds_info_counters() : I32 val
Returns
- I32 val
rds_info_first
fun box rds_info_first() : I32 val
Returns
- I32 val
rds_info_ib_connections
fun box rds_info_ib_connections() : I32 val
Returns
- I32 val
rds_info_iwarp_connections
fun box rds_info_iwarp_connections() : I32 val
Returns
- I32 val
rds_info_last
fun box rds_info_last() : I32 val
Returns
- I32 val
rds_info_message_flag_ack
fun box rds_info_message_flag_ack() : I32 val
Returns
- I32 val
rds_info_message_flag_fast_ack
fun box rds_info_message_flag_fast_ack() : I32 val
Returns
- I32 val
rds_info_recv_messages
fun box rds_info_recv_messages() : I32 val
Returns
- I32 val
rds_info_retrans_messages
fun box rds_info_retrans_messages() : I32 val
Returns
- I32 val
rds_info_send_messages
fun box rds_info_send_messages() : I32 val
Returns
- I32 val
rds_info_sockets
fun box rds_info_sockets() : I32 val
Returns
- I32 val
rds_info_tcp_sockets
fun box rds_info_tcp_sockets() : I32 val
Returns
- I32 val
rds_rdma_canceled
fun box rds_rdma_canceled() : I32 val
Returns
- I32 val
rds_rdma_dontwait
fun box rds_rdma_dontwait() : I32 val
Returns
- I32 val
rds_rdma_dropped
fun box rds_rdma_dropped() : I32 val
Returns
- I32 val
rds_rdma_fence
fun box rds_rdma_fence() : I32 val
Returns
- I32 val
rds_rdma_invalidate
fun box rds_rdma_invalidate() : I32 val
Returns
- I32 val
rds_rdma_notify_me
fun box rds_rdma_notify_me() : I32 val
Returns
- I32 val
rds_rdma_other_error
fun box rds_rdma_other_error() : I32 val
Returns
- I32 val
rds_rdma_readwrite
fun box rds_rdma_readwrite() : I32 val
Returns
- I32 val
rds_rdma_remote_error
fun box rds_rdma_remote_error() : I32 val
Returns
- I32 val
rds_rdma_silent
fun box rds_rdma_silent() : I32 val
Returns
- I32 val
rds_rdma_success
fun box rds_rdma_success() : I32 val
Returns
- I32 val
rds_rdma_use_once
fun box rds_rdma_use_once() : I32 val
Returns
- I32 val
rds_recverr
fun box rds_recverr() : I32 val
Returns
- I32 val
rds_trans_count
fun box rds_trans_count() : I32 val
Returns
- I32 val
rds_trans_ib
fun box rds_trans_ib() : I32 val
Returns
- I32 val
rds_trans_iwarp
fun box rds_trans_iwarp() : I32 val
Returns
- I32 val
rds_trans_none
fun box rds_trans_none() : I32 val
Returns
- I32 val
rds_trans_tcp
fun box rds_trans_tcp() : I32 val
Returns
- I32 val
rose_access_barred
fun box rose_access_barred() : I32 val
Returns
- I32 val
rose_defer
fun box rose_defer() : I32 val
Returns
- I32 val
rose_dte_originated
fun box rose_dte_originated() : I32 val
Returns
- I32 val
rose_holdback
fun box rose_holdback() : I32 val
Returns
- I32 val
rose_idle
fun box rose_idle() : I32 val
Returns
- I32 val
rose_invalid_facility
fun box rose_invalid_facility() : I32 val
Returns
- I32 val
rose_local_procedure
fun box rose_local_procedure() : I32 val
Returns
- I32 val
rose_max_digis
fun box rose_max_digis() : I32 val
Returns
- I32 val
rose_mtu
fun box rose_mtu() : I32 val
Returns
- I32 val
rose_network_congestion
fun box rose_network_congestion() : I32 val
Returns
- I32 val
rose_not_obtainable
fun box rose_not_obtainable() : I32 val
Returns
- I32 val
rose_number_busy
fun box rose_number_busy() : I32 val
Returns
- I32 val
rose_out_of_order
fun box rose_out_of_order() : I32 val
Returns
- I32 val
rose_qbitincl
fun box rose_qbitincl() : I32 val
Returns
- I32 val
rose_remote_procedure
fun box rose_remote_procedure() : I32 val
Returns
- I32 val
rose_ship_absent
fun box rose_ship_absent() : I32 val
Returns
- I32 val
rose_t1
fun box rose_t1() : I32 val
Returns
- I32 val
rose_t2
fun box rose_t2() : I32 val
Returns
- I32 val
rose_t3
fun box rose_t3() : I32 val
Returns
- I32 val
scm_hci_raw_direction
fun box scm_hci_raw_direction() : I32 val
Returns
- I32 val
scm_timestamp
fun box scm_timestamp() : I32 val
Returns
- I32 val
scm_timestamping
fun box scm_timestamping() : I32 val
Returns
- I32 val
scm_timestampns
fun box scm_timestampns() : I32 val
Returns
- I32 val
scm_wifi_status
fun box scm_wifi_status() : I32 val
Returns
- I32 val
sctp_abort_association
fun box sctp_abort_association() : I32 val
Returns
- I32 val
sctp_adaptation_layer
fun box sctp_adaptation_layer() : I32 val
Returns
- I32 val
sctp_adaption_layer
fun box sctp_adaption_layer() : I32 val
Returns
- I32 val
sctp_add_streams
fun box sctp_add_streams() : I32 val
Returns
- I32 val
sctp_add_vrf_id
fun box sctp_add_vrf_id() : I32 val
Returns
- I32 val
sctp_asconf
fun box sctp_asconf() : I32 val
Returns
- I32 val
sctp_asconf_ack
fun box sctp_asconf_ack() : I32 val
Returns
- I32 val
sctp_asconf_supported
fun box sctp_asconf_supported() : I32 val
Returns
- I32 val
sctp_associnfo
fun box sctp_associnfo() : I32 val
Returns
- I32 val
sctp_authentication
fun box sctp_authentication() : I32 val
Returns
- I32 val
sctp_auth_active_key
fun box sctp_auth_active_key() : I32 val
Returns
- I32 val
sctp_auth_chunk
fun box sctp_auth_chunk() : I32 val
Returns
- I32 val
sctp_auth_deactivate_key
fun box sctp_auth_deactivate_key() : I32 val
Returns
- I32 val
sctp_auth_delete_key
fun box sctp_auth_delete_key() : I32 val
Returns
- I32 val
sctp_auth_key
fun box sctp_auth_key() : I32 val
Returns
- I32 val
sctp_auth_supported
fun box sctp_auth_supported() : I32 val
Returns
- I32 val
sctp_autoclose
fun box sctp_autoclose() : I32 val
Returns
- I32 val
sctp_auto_asconf
fun box sctp_auto_asconf() : I32 val
Returns
- I32 val
sctp_badcrc
fun box sctp_badcrc() : I32 val
Returns
- I32 val
sctp_bindx_add_addr
fun box sctp_bindx_add_addr() : I32 val
Returns
- I32 val
sctp_bindx_rem_addr
fun box sctp_bindx_rem_addr() : I32 val
Returns
- I32 val
sctp_blk_logging_enable
fun box sctp_blk_logging_enable() : I32 val
Returns
- I32 val
sctp_bound
fun box sctp_bound() : I32 val
Returns
- I32 val
sctp_cause_cookie_in_shutdown
fun box sctp_cause_cookie_in_shutdown() : I32 val
Returns
- I32 val
sctp_cause_deleting_last_addr
fun box sctp_cause_deleting_last_addr() : I32 val
Returns
- I32 val
sctp_cause_deleting_src_addr
fun box sctp_cause_deleting_src_addr() : I32 val
Returns
- I32 val
sctp_cause_illegal_asconf_ack
fun box sctp_cause_illegal_asconf_ack() : I32 val
Returns
- I32 val
sctp_cause_invalid_param
fun box sctp_cause_invalid_param() : I32 val
Returns
- I32 val
sctp_cause_invalid_stream
fun box sctp_cause_invalid_stream() : I32 val
Returns
- I32 val
sctp_cause_missing_param
fun box sctp_cause_missing_param() : I32 val
Returns
- I32 val
sctp_cause_nat_colliding_state
fun box sctp_cause_nat_colliding_state() : I32 val
Returns
- I32 val
sctp_cause_nat_missing_state
fun box sctp_cause_nat_missing_state() : I32 val
Returns
- I32 val
sctp_cause_no_error
fun box sctp_cause_no_error() : I32 val
Returns
- I32 val
sctp_cause_no_user_data
fun box sctp_cause_no_user_data() : I32 val
Returns
- I32 val
sctp_cause_out_of_resc
fun box sctp_cause_out_of_resc() : I32 val
Returns
- I32 val
sctp_cause_protocol_violation
fun box sctp_cause_protocol_violation() : I32 val
Returns
- I32 val
sctp_cause_request_refused
fun box sctp_cause_request_refused() : I32 val
Returns
- I32 val
sctp_cause_resource_shortage
fun box sctp_cause_resource_shortage() : I32 val
Returns
- I32 val
sctp_cause_restart_w_newaddr
fun box sctp_cause_restart_w_newaddr() : I32 val
Returns
- I32 val
sctp_cause_stale_cookie
fun box sctp_cause_stale_cookie() : I32 val
Returns
- I32 val
sctp_cause_unrecog_chunk
fun box sctp_cause_unrecog_chunk() : I32 val
Returns
- I32 val
sctp_cause_unrecog_param
fun box sctp_cause_unrecog_param() : I32 val
Returns
- I32 val
sctp_cause_unresolvable_addr
fun box sctp_cause_unresolvable_addr() : I32 val
Returns
- I32 val
sctp_cause_unsupported_hmacid
fun box sctp_cause_unsupported_hmacid() : I32 val
Returns
- I32 val
sctp_cause_user_initiated_abt
fun box sctp_cause_user_initiated_abt() : I32 val
Returns
- I32 val
sctp_cc_hstcp
fun box sctp_cc_hstcp() : I32 val
Returns
- I32 val
sctp_cc_htcp
fun box sctp_cc_htcp() : I32 val
Returns
- I32 val
sctp_cc_option
fun box sctp_cc_option() : I32 val
Returns
- I32 val
sctp_cc_opt_rtcc_setmode
fun box sctp_cc_opt_rtcc_setmode() : I32 val
Returns
- I32 val
sctp_cc_opt_steady_step
fun box sctp_cc_opt_steady_step() : I32 val
Returns
- I32 val
sctp_cc_opt_use_dccc_ecn
fun box sctp_cc_opt_use_dccc_ecn() : I32 val
Returns
- I32 val
sctp_cc_rfc2581
fun box sctp_cc_rfc2581() : I32 val
Returns
- I32 val
sctp_cc_rtcc
fun box sctp_cc_rtcc() : I32 val
Returns
- I32 val
sctp_closed
fun box sctp_closed() : I32 val
Returns
- I32 val
sctp_clr_stat_log
fun box sctp_clr_stat_log() : I32 val
Returns
- I32 val
sctp_cmt_base
fun box sctp_cmt_base() : I32 val
Returns
- I32 val
sctp_cmt_max
fun box sctp_cmt_max() : I32 val
Returns
- I32 val
sctp_cmt_mptcp
fun box sctp_cmt_mptcp() : I32 val
Returns
- I32 val
sctp_cmt_off
fun box sctp_cmt_off() : I32 val
Returns
- I32 val
sctp_cmt_on_off
fun box sctp_cmt_on_off() : I32 val
Returns
- I32 val
sctp_cmt_rpv1
fun box sctp_cmt_rpv1() : I32 val
Returns
- I32 val
sctp_cmt_rpv2
fun box sctp_cmt_rpv2() : I32 val
Returns
- I32 val
sctp_cmt_use_dac
fun box sctp_cmt_use_dac() : I32 val
Returns
- I32 val
sctp_connect_x
fun box sctp_connect_x() : I32 val
Returns
- I32 val
sctp_connect_x_complete
fun box sctp_connect_x_complete() : I32 val
Returns
- I32 val
sctp_connect_x_delayed
fun box sctp_connect_x_delayed() : I32 val
Returns
- I32 val
sctp_context
fun box sctp_context() : I32 val
Returns
- I32 val
sctp_cookie_ack
fun box sctp_cookie_ack() : I32 val
Returns
- I32 val
sctp_cookie_echo
fun box sctp_cookie_echo() : I32 val
Returns
- I32 val
sctp_cookie_echoed
fun box sctp_cookie_echoed() : I32 val
Returns
- I32 val
sctp_cookie_wait
fun box sctp_cookie_wait() : I32 val
Returns
- I32 val
sctp_cwnd_logging_enable
fun box sctp_cwnd_logging_enable() : I32 val
Returns
- I32 val
sctp_cwnd_monitor_enable
fun box sctp_cwnd_monitor_enable() : I32 val
Returns
- I32 val
sctp_cwr_in_same_window
fun box sctp_cwr_in_same_window() : I32 val
Returns
- I32 val
sctp_cwr_reduce_override
fun box sctp_cwr_reduce_override() : I32 val
Returns
- I32 val
sctp_data
fun box sctp_data() : I32 val
Returns
- I32 val
sctp_data_first_frag
fun box sctp_data_first_frag() : I32 val
Returns
- I32 val
sctp_data_frag_mask
fun box sctp_data_frag_mask() : I32 val
Returns
- I32 val
sctp_data_last_frag
fun box sctp_data_last_frag() : I32 val
Returns
- I32 val
sctp_data_middle_frag
fun box sctp_data_middle_frag() : I32 val
Returns
- I32 val
sctp_data_not_frag
fun box sctp_data_not_frag() : I32 val
Returns
- I32 val
sctp_data_sack_immediately
fun box sctp_data_sack_immediately() : I32 val
Returns
- I32 val
sctp_data_unordered
fun box sctp_data_unordered() : I32 val
Returns
- I32 val
sctp_default_prinfo
fun box sctp_default_prinfo() : I32 val
Returns
- I32 val
sctp_default_send_param
fun box sctp_default_send_param() : I32 val
Returns
- I32 val
sctp_default_sndinfo
fun box sctp_default_sndinfo() : I32 val
Returns
- I32 val
sctp_delayed_sack
fun box sctp_delayed_sack() : I32 val
Returns
- I32 val
sctp_del_vrf_id
fun box sctp_del_vrf_id() : I32 val
Returns
- I32 val
sctp_disable_fragments
fun box sctp_disable_fragments() : I32 val
Returns
- I32 val
sctp_ecn_cwr
fun box sctp_ecn_cwr() : I32 val
Returns
- I32 val
sctp_ecn_echo
fun box sctp_ecn_echo() : I32 val
Returns
- I32 val
sctp_ecn_supported
fun box sctp_ecn_supported() : I32 val
Returns
- I32 val
sctp_enable_change_assoc_req
fun box sctp_enable_change_assoc_req() : I32 val
Returns
- I32 val
sctp_enable_reset_assoc_req
fun box sctp_enable_reset_assoc_req() : I32 val
Returns
- I32 val
sctp_enable_reset_stream_req
fun box sctp_enable_reset_stream_req() : I32 val
Returns
- I32 val
sctp_enable_stream_reset
fun box sctp_enable_stream_reset() : I32 val
Returns
- I32 val
sctp_enable_value_mask
fun box sctp_enable_value_mask() : I32 val
Returns
- I32 val
sctp_established
fun box sctp_established() : I32 val
Returns
- I32 val
sctp_event
fun box sctp_event() : I32 val
Returns
- I32 val
sctp_events
fun box sctp_events() : I32 val
Returns
- I32 val
sctp_explicit_eor
fun box sctp_explicit_eor() : I32 val
Returns
- I32 val
sctp_flight_logging_enable
fun box sctp_flight_logging_enable() : I32 val
Returns
- I32 val
sctp_forward_cum_tsn
fun box sctp_forward_cum_tsn() : I32 val
Returns
- I32 val
sctp_fragment_interleave
fun box sctp_fragment_interleave() : I32 val
Returns
- I32 val
sctp_frag_level_0
fun box sctp_frag_level_0() : I32 val
Returns
- I32 val
sctp_frag_level_1
fun box sctp_frag_level_1() : I32 val
Returns
- I32 val
sctp_frag_level_2
fun box sctp_frag_level_2() : I32 val
Returns
- I32 val
sctp_from_middle_box
fun box sctp_from_middle_box() : I32 val
Returns
- I32 val
sctp_fr_logging_enable
fun box sctp_fr_logging_enable() : I32 val
Returns
- I32 val
sctp_get_addr_len
fun box sctp_get_addr_len() : I32 val
Returns
- I32 val
sctp_get_asoc_vrf
fun box sctp_get_asoc_vrf() : I32 val
Returns
- I32 val
sctp_get_assoc_id_list
fun box sctp_get_assoc_id_list() : I32 val
Returns
- I32 val
sctp_get_assoc_number
fun box sctp_get_assoc_number() : I32 val
Returns
- I32 val
sctp_get_local_addresses
fun box sctp_get_local_addresses() : I32 val
Returns
- I32 val
sctp_get_local_addr_size
fun box sctp_get_local_addr_size() : I32 val
Returns
- I32 val
sctp_get_nonce_values
fun box sctp_get_nonce_values() : I32 val
Returns
- I32 val
sctp_get_packet_log
fun box sctp_get_packet_log() : I32 val
Returns
- I32 val
sctp_get_peer_addresses
fun box sctp_get_peer_addresses() : I32 val
Returns
- I32 val
sctp_get_peer_addr_info
fun box sctp_get_peer_addr_info() : I32 val
Returns
- I32 val
sctp_get_remote_addr_size
fun box sctp_get_remote_addr_size() : I32 val
Returns
- I32 val
sctp_get_sndbuf_use
fun box sctp_get_sndbuf_use() : I32 val
Returns
- I32 val
sctp_get_stat_log
fun box sctp_get_stat_log() : I32 val
Returns
- I32 val
sctp_get_vrf_ids
fun box sctp_get_vrf_ids() : I32 val
Returns
- I32 val
sctp_had_no_tcb
fun box sctp_had_no_tcb() : I32 val
Returns
- I32 val
sctp_heartbeat_ack
fun box sctp_heartbeat_ack() : I32 val
Returns
- I32 val
sctp_heartbeat_request
fun box sctp_heartbeat_request() : I32 val
Returns
- I32 val
sctp_hmac_ident
fun box sctp_hmac_ident() : I32 val
Returns
- I32 val
sctp_idata
fun box sctp_idata() : I32 val
Returns
- I32 val
sctp_iforward_cum_tsn
fun box sctp_iforward_cum_tsn() : I32 val
Returns
- I32 val
sctp_initiation
fun box sctp_initiation() : I32 val
Returns
- I32 val
sctp_initiation_ack
fun box sctp_initiation_ack() : I32 val
Returns
- I32 val
sctp_initmsg
fun box sctp_initmsg() : I32 val
Returns
- I32 val
sctp_interleaving_supported
fun box sctp_interleaving_supported() : I32 val
Returns
- I32 val
sctp_i_want_mapped_v4_addr
fun box sctp_i_want_mapped_v4_addr() : I32 val
Returns
- I32 val
sctp_last_packet_tracing
fun box sctp_last_packet_tracing() : I32 val
Returns
- I32 val
sctp_listen
fun box sctp_listen() : I32 val
Returns
- I32 val
sctp_local_auth_chunks
fun box sctp_local_auth_chunks() : I32 val
Returns
- I32 val
sctp_lock_logging_enable
fun box sctp_lock_logging_enable() : I32 val
Returns
- I32 val
sctp_log_at_send_2_outq
fun box sctp_log_at_send_2_outq() : I32 val
Returns
- I32 val
sctp_log_at_send_2_sctp
fun box sctp_log_at_send_2_sctp() : I32 val
Returns
- I32 val
sctp_log_maxburst_enable
fun box sctp_log_maxburst_enable() : I32 val
Returns
- I32 val
sctp_log_rwnd_enable
fun box sctp_log_rwnd_enable() : I32 val
Returns
- I32 val
sctp_log_sack_arrivals_enable
fun box sctp_log_sack_arrivals_enable() : I32 val
Returns
- I32 val
sctp_log_try_advance
fun box sctp_log_try_advance() : I32 val
Returns
- I32 val
sctp_ltrace_chunk_enable
fun box sctp_ltrace_chunk_enable() : I32 val
Returns
- I32 val
sctp_ltrace_error_enable
fun box sctp_ltrace_error_enable() : I32 val
Returns
- I32 val
sctp_map_logging_enable
fun box sctp_map_logging_enable() : I32 val
Returns
- I32 val
sctp_maxburst
fun box sctp_maxburst() : I32 val
Returns
- I32 val
sctp_maxseg
fun box sctp_maxseg() : I32 val
Returns
- I32 val
sctp_max_burst
fun box sctp_max_burst() : I32 val
Returns
- I32 val
sctp_max_cookie_life
fun box sctp_max_cookie_life() : I32 val
Returns
- I32 val
sctp_max_cwnd
fun box sctp_max_cwnd() : I32 val
Returns
- I32 val
sctp_max_hb_interval
fun box sctp_max_hb_interval() : I32 val
Returns
- I32 val
sctp_max_sack_delay
fun box sctp_max_sack_delay() : I32 val
Returns
- I32 val
sctp_mbcnt_logging_enable
fun box sctp_mbcnt_logging_enable() : I32 val
Returns
- I32 val
sctp_mbuf_logging_enable
fun box sctp_mbuf_logging_enable() : I32 val
Returns
- I32 val
sctp_mobility_base
fun box sctp_mobility_base() : I32 val
Returns
- I32 val
sctp_mobility_fasthandoff
fun box sctp_mobility_fasthandoff() : I32 val
Returns
- I32 val
sctp_mobility_prim_deleted
fun box sctp_mobility_prim_deleted() : I32 val
Returns
- I32 val
sctp_nagle_logging_enable
fun box sctp_nagle_logging_enable() : I32 val
Returns
- I32 val
sctp_nodelay
fun box sctp_nodelay() : I32 val
Returns
- I32 val
sctp_nrsack_supported
fun box sctp_nrsack_supported() : I32 val
Returns
- I32 val
sctp_nr_selective_ack
fun box sctp_nr_selective_ack() : I32 val
Returns
- I32 val
sctp_operation_error
fun box sctp_operation_error() : I32 val
Returns
- I32 val
sctp_packed
fun box sctp_packed() : I32 val
Returns
- I32 val
sctp_packet_dropped
fun box sctp_packet_dropped() : I32 val
Returns
- I32 val
sctp_packet_log_size
fun box sctp_packet_log_size() : I32 val
Returns
- I32 val
sctp_packet_truncated
fun box sctp_packet_truncated() : I32 val
Returns
- I32 val
sctp_pad_chunk
fun box sctp_pad_chunk() : I32 val
Returns
- I32 val
sctp_partial_delivery_point
fun box sctp_partial_delivery_point() : I32 val
Returns
- I32 val
sctp_pcb_copy_flags
fun box sctp_pcb_copy_flags() : I32 val
Returns
- I32 val
sctp_pcb_flags_accepting
fun box sctp_pcb_flags_accepting() : I32 val
Returns
- I32 val
sctp_pcb_flags_adaptationevnt
fun box sctp_pcb_flags_adaptationevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_assoc_resetevnt
fun box sctp_pcb_flags_assoc_resetevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_authevnt
fun box sctp_pcb_flags_authevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_autoclose
fun box sctp_pcb_flags_autoclose() : I32 val
Returns
- I32 val
sctp_pcb_flags_auto_asconf
fun box sctp_pcb_flags_auto_asconf() : I32 val
Returns
- I32 val
sctp_pcb_flags_blocking_io
fun box sctp_pcb_flags_blocking_io() : I32 val
Returns
- I32 val
sctp_pcb_flags_boundall
fun box sctp_pcb_flags_boundall() : I32 val
Returns
- I32 val
sctp_pcb_flags_bound_v6
fun box sctp_pcb_flags_bound_v6() : I32 val
Returns
- I32 val
sctp_pcb_flags_close_ip
fun box sctp_pcb_flags_close_ip() : I32 val
Returns
- I32 val
sctp_pcb_flags_connected
fun box sctp_pcb_flags_connected() : I32 val
Returns
- I32 val
sctp_pcb_flags_donot_heartbeat
fun box sctp_pcb_flags_donot_heartbeat() : I32 val
Returns
- I32 val
sctp_pcb_flags_dont_wake
fun box sctp_pcb_flags_dont_wake() : I32 val
Returns
- I32 val
sctp_pcb_flags_do_asconf
fun box sctp_pcb_flags_do_asconf() : I32 val
Returns
- I32 val
sctp_pcb_flags_do_not_pmtud
fun box sctp_pcb_flags_do_not_pmtud() : I32 val
Returns
- I32 val
sctp_pcb_flags_dryevnt
fun box sctp_pcb_flags_dryevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_explicit_eor
fun box sctp_pcb_flags_explicit_eor() : I32 val
Returns
- I32 val
sctp_pcb_flags_ext_rcvinfo
fun box sctp_pcb_flags_ext_rcvinfo() : I32 val
Returns
- I32 val
sctp_pcb_flags_frag_interleave
fun box sctp_pcb_flags_frag_interleave() : I32 val
Returns
- I32 val
sctp_pcb_flags_interleave_strms
fun box sctp_pcb_flags_interleave_strms() : I32 val
Returns
- I32 val
sctp_pcb_flags_in_tcppool
fun box sctp_pcb_flags_in_tcppool() : I32 val
Returns
- I32 val
sctp_pcb_flags_multiple_asconfs
fun box sctp_pcb_flags_multiple_asconfs() : I32 val
Returns
- I32 val
sctp_pcb_flags_needs_mapped_v4
fun box sctp_pcb_flags_needs_mapped_v4() : I32 val
Returns
- I32 val
sctp_pcb_flags_nodelay
fun box sctp_pcb_flags_nodelay() : I32 val
Returns
- I32 val
sctp_pcb_flags_no_fragment
fun box sctp_pcb_flags_no_fragment() : I32 val
Returns
- I32 val
sctp_pcb_flags_pdapievnt
fun box sctp_pcb_flags_pdapievnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_portreuse
fun box sctp_pcb_flags_portreuse() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvassocevnt
fun box sctp_pcb_flags_recvassocevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvdataioevnt
fun box sctp_pcb_flags_recvdataioevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvnsendfailevnt
fun box sctp_pcb_flags_recvnsendfailevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvnxtinfo
fun box sctp_pcb_flags_recvnxtinfo() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvpaddrevnt
fun box sctp_pcb_flags_recvpaddrevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvpeererr
fun box sctp_pcb_flags_recvpeererr() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvrcvinfo
fun box sctp_pcb_flags_recvrcvinfo() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvsendfailevnt
fun box sctp_pcb_flags_recvsendfailevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_recvshutdownevnt
fun box sctp_pcb_flags_recvshutdownevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_socket_allgone
fun box sctp_pcb_flags_socket_allgone() : I32 val
Returns
- I32 val
sctp_pcb_flags_socket_cant_read
fun box sctp_pcb_flags_socket_cant_read() : I32 val
Returns
- I32 val
sctp_pcb_flags_socket_gone
fun box sctp_pcb_flags_socket_gone() : I32 val
Returns
- I32 val
sctp_pcb_flags_stream_changeevnt
fun box sctp_pcb_flags_stream_changeevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_stream_resetevnt
fun box sctp_pcb_flags_stream_resetevnt() : I32 val
Returns
- I32 val
sctp_pcb_flags_tcptype
fun box sctp_pcb_flags_tcptype() : I32 val
Returns
- I32 val
sctp_pcb_flags_udptype
fun box sctp_pcb_flags_udptype() : I32 val
Returns
- I32 val
sctp_pcb_flags_unbound
fun box sctp_pcb_flags_unbound() : I32 val
Returns
- I32 val
sctp_pcb_flags_wakeinput
fun box sctp_pcb_flags_wakeinput() : I32 val
Returns
- I32 val
sctp_pcb_flags_wakeoutput
fun box sctp_pcb_flags_wakeoutput() : I32 val
Returns
- I32 val
sctp_pcb_flags_was_aborted
fun box sctp_pcb_flags_was_aborted() : I32 val
Returns
- I32 val
sctp_pcb_flags_was_connected
fun box sctp_pcb_flags_was_connected() : I32 val
Returns
- I32 val
sctp_pcb_flags_zero_copy_active
fun box sctp_pcb_flags_zero_copy_active() : I32 val
Returns
- I32 val
sctp_pcb_status
fun box sctp_pcb_status() : I32 val
Returns
- I32 val
sctp_peeloff
fun box sctp_peeloff() : I32 val
Returns
- I32 val
sctp_peer_addr_params
fun box sctp_peer_addr_params() : I32 val
Returns
- I32 val
sctp_peer_addr_thlds
fun box sctp_peer_addr_thlds() : I32 val
Returns
- I32 val
sctp_peer_auth_chunks
fun box sctp_peer_auth_chunks() : I32 val
Returns
- I32 val
sctp_pktdrop_supported
fun box sctp_pktdrop_supported() : I32 val
Returns
- I32 val
sctp_pluggable_cc
fun box sctp_pluggable_cc() : I32 val
Returns
- I32 val
sctp_pluggable_ss
fun box sctp_pluggable_ss() : I32 val
Returns
- I32 val
sctp_primary_addr
fun box sctp_primary_addr() : I32 val
Returns
- I32 val
sctp_pr_assoc_status
fun box sctp_pr_assoc_status() : I32 val
Returns
- I32 val
sctp_pr_stream_status
fun box sctp_pr_stream_status() : I32 val
Returns
- I32 val
sctp_pr_supported
fun box sctp_pr_supported() : I32 val
Returns
- I32 val
sctp_reconfig_supported
fun box sctp_reconfig_supported() : I32 val
Returns
- I32 val
sctp_recvnxtinfo
fun box sctp_recvnxtinfo() : I32 val
Returns
- I32 val
sctp_recvrcvinfo
fun box sctp_recvrcvinfo() : I32 val
Returns
- I32 val
sctp_recv_rwnd_logging_enable
fun box sctp_recv_rwnd_logging_enable() : I32 val
Returns
- I32 val
sctp_remote_udp_encaps_port
fun box sctp_remote_udp_encaps_port() : I32 val
Returns
- I32 val
sctp_reset_assoc
fun box sctp_reset_assoc() : I32 val
Returns
- I32 val
sctp_reset_streams
fun box sctp_reset_streams() : I32 val
Returns
- I32 val
sctp_reuse_port
fun box sctp_reuse_port() : I32 val
Returns
- I32 val
sctp_rtoinfo
fun box sctp_rtoinfo() : I32 val
Returns
- I32 val
sctp_rttvar_logging_enable
fun box sctp_rttvar_logging_enable() : I32 val
Returns
- I32 val
sctp_sack_cmt_dac
fun box sctp_sack_cmt_dac() : I32 val
Returns
- I32 val
sctp_sack_logging_enable
fun box sctp_sack_logging_enable() : I32 val
Returns
- I32 val
sctp_sack_nonce_sum
fun box sctp_sack_nonce_sum() : I32 val
Returns
- I32 val
sctp_sack_rwnd_logging_enable
fun box sctp_sack_rwnd_logging_enable() : I32 val
Returns
- I32 val
sctp_sat_network_burst_incr
fun box sctp_sat_network_burst_incr() : I32 val
Returns
- I32 val
sctp_sat_network_min
fun box sctp_sat_network_min() : I32 val
Returns
- I32 val
sctp_sb_logging_enable
fun box sctp_sb_logging_enable() : I32 val
Returns
- I32 val
sctp_selective_ack
fun box sctp_selective_ack() : I32 val
Returns
- I32 val
sctp_set_debug_level
fun box sctp_set_debug_level() : I32 val
Returns
- I32 val
sctp_set_dynamic_primary
fun box sctp_set_dynamic_primary() : I32 val
Returns
- I32 val
sctp_set_initial_dbg_seq
fun box sctp_set_initial_dbg_seq() : I32 val
Returns
- I32 val
sctp_set_peer_primary_addr
fun box sctp_set_peer_primary_addr() : I32 val
Returns
- I32 val
sctp_shutdown
fun box sctp_shutdown() : I32 val
Returns
- I32 val
sctp_shutdown_ack
fun box sctp_shutdown_ack() : I32 val
Returns
- I32 val
sctp_shutdown_ack_sent
fun box sctp_shutdown_ack_sent() : I32 val
Returns
- I32 val
sctp_shutdown_complete
fun box sctp_shutdown_complete() : I32 val
Returns
- I32 val
sctp_shutdown_pending
fun box sctp_shutdown_pending() : I32 val
Returns
- I32 val
sctp_shutdown_received
fun box sctp_shutdown_received() : I32 val
Returns
- I32 val
sctp_shutdown_sent
fun box sctp_shutdown_sent() : I32 val
Returns
- I32 val
sctp_smallest_pmtu
fun box sctp_smallest_pmtu() : I32 val
Returns
- I32 val
sctp_ss_default
fun box sctp_ss_default() : I32 val
Returns
- I32 val
sctp_ss_fair_bandwith
fun box sctp_ss_fair_bandwith() : I32 val
Returns
- I32 val
sctp_ss_first_come
fun box sctp_ss_first_come() : I32 val
Returns
- I32 val
sctp_ss_priority
fun box sctp_ss_priority() : I32 val
Returns
- I32 val
sctp_ss_round_robin
fun box sctp_ss_round_robin() : I32 val
Returns
- I32 val
sctp_ss_round_robin_packet
fun box sctp_ss_round_robin_packet() : I32 val
Returns
- I32 val
sctp_ss_value
fun box sctp_ss_value() : I32 val
Returns
- I32 val
sctp_status
fun box sctp_status() : I32 val
Returns
- I32 val
sctp_stream_reset
fun box sctp_stream_reset() : I32 val
Returns
- I32 val
sctp_stream_reset_incoming
fun box sctp_stream_reset_incoming() : I32 val
Returns
- I32 val
sctp_stream_reset_outgoing
fun box sctp_stream_reset_outgoing() : I32 val
Returns
- I32 val
sctp_str_logging_enable
fun box sctp_str_logging_enable() : I32 val
Returns
- I32 val
sctp_threshold_logging
fun box sctp_threshold_logging() : I32 val
Returns
- I32 val
sctp_timeouts
fun box sctp_timeouts() : I32 val
Returns
- I32 val
sctp_use_ext_rcvinfo
fun box sctp_use_ext_rcvinfo() : I32 val
Returns
- I32 val
sctp_vrf_id
fun box sctp_vrf_id() : I32 val
Returns
- I32 val
sctp_wake_logging_enable
fun box sctp_wake_logging_enable() : I32 val
Returns
- I32 val
sock_cloexec
fun box sock_cloexec() : I32 val
Returns
- I32 val
sock_dgram
fun box sock_dgram() : I32 val
Returns
- I32 val
sock_maxaddrlen
fun box sock_maxaddrlen() : I32 val
Returns
- I32 val
sock_nonblock
fun box sock_nonblock() : I32 val
Returns
- I32 val
sock_raw
fun box sock_raw() : I32 val
Returns
- I32 val
sock_rdm
fun box sock_rdm() : I32 val
Returns
- I32 val
sock_seqpacket
fun box sock_seqpacket() : I32 val
Returns
- I32 val
sock_stream
fun box sock_stream() : I32 val
Returns
- I32 val
somaxconn
fun box somaxconn() : I32 val
Returns
- I32 val
sonpx_setoptshut
fun box sonpx_setoptshut() : I32 val
Returns
- I32 val
so_acceptconn
fun box so_acceptconn() : I32 val
Returns
- I32 val
so_acceptfilter
fun box so_acceptfilter() : I32 val
Returns
- I32 val
so_atmpvc
fun box so_atmpvc() : I32 val
Returns
- I32 val
so_atmqos
fun box so_atmqos() : I32 val
Returns
- I32 val
so_atmsap
fun box so_atmsap() : I32 val
Returns
- I32 val
so_attach_bpf
fun box so_attach_bpf() : I32 val
Returns
- I32 val
so_attach_filter
fun box so_attach_filter() : I32 val
Returns
- I32 val
so_bindtodevice
fun box so_bindtodevice() : I32 val
Returns
- I32 val
so_bintime
fun box so_bintime() : I32 val
Returns
- I32 val
so_bpf_extensions
fun box so_bpf_extensions() : I32 val
Returns
- I32 val
so_broadcast
fun box so_broadcast() : I32 val
Returns
- I32 val
so_bsdcompat
fun box so_bsdcompat() : I32 val
Returns
- I32 val
so_bsp_state
fun box so_bsp_state() : I32 val
Returns
- I32 val
so_busy_poll
fun box so_busy_poll() : I32 val
Returns
- I32 val
so_conaccess
fun box so_conaccess() : I32 val
Returns
- I32 val
so_condata
fun box so_condata() : I32 val
Returns
- I32 val
so_conditional_accept
fun box so_conditional_accept() : I32 val
Returns
- I32 val
so_connect_time
fun box so_connect_time() : I32 val
Returns
- I32 val
so_debug
fun box so_debug() : I32 val
Returns
- I32 val
so_detach_bpf
fun box so_detach_bpf() : I32 val
Returns
- I32 val
so_detach_filter
fun box so_detach_filter() : I32 val
Returns
- I32 val
so_domain
fun box so_domain() : I32 val
Returns
- I32 val
so_dontlinger
fun box so_dontlinger() : I32 val
Returns
- I32 val
so_dontroute
fun box so_dontroute() : I32 val
Returns
- I32 val
so_donttrunc
fun box so_donttrunc() : I32 val
Returns
- I32 val
so_error
fun box so_error() : I32 val
Returns
- I32 val
so_exclusiveaddruse
fun box so_exclusiveaddruse() : I32 val
Returns
- I32 val
so_get_filter
fun box so_get_filter() : I32 val
Returns
- I32 val
so_group_id
fun box so_group_id() : I32 val
Returns
- I32 val
so_group_priority
fun box so_group_priority() : I32 val
Returns
- I32 val
so_hci_raw_direction
fun box so_hci_raw_direction() : I32 val
Returns
- I32 val
so_hci_raw_filter
fun box so_hci_raw_filter() : I32 val
Returns
- I32 val
so_incoming_cpu
fun box so_incoming_cpu() : I32 val
Returns
- I32 val
so_keepalive
fun box so_keepalive() : I32 val
Returns
- I32 val
so_l2cap_encrypted
fun box so_l2cap_encrypted() : I32 val
Returns
- I32 val
so_l2cap_flush
fun box so_l2cap_flush() : I32 val
Returns
- I32 val
so_l2cap_iflow
fun box so_l2cap_iflow() : I32 val
Returns
- I32 val
so_l2cap_imtu
fun box so_l2cap_imtu() : I32 val
Returns
- I32 val
so_l2cap_oflow
fun box so_l2cap_oflow() : I32 val
Returns
- I32 val
so_l2cap_omtu
fun box so_l2cap_omtu() : I32 val
Returns
- I32 val
so_label
fun box so_label() : I32 val
Returns
- I32 val
so_linger
fun box so_linger() : I32 val
Returns
- I32 val
so_linger_sec
fun box so_linger_sec() : I32 val
Returns
- I32 val
so_linkinfo
fun box so_linkinfo() : I32 val
Returns
- I32 val
so_listenincqlen
fun box so_listenincqlen() : I32 val
Returns
- I32 val
so_listenqlen
fun box so_listenqlen() : I32 val
Returns
- I32 val
so_listenqlimit
fun box so_listenqlimit() : I32 val
Returns
- I32 val
so_lock_filter
fun box so_lock_filter() : I32 val
Returns
- I32 val
so_mark
fun box so_mark() : I32 val
Returns
- I32 val
so_max_msg_size
fun box so_max_msg_size() : I32 val
Returns
- I32 val
so_max_pacing_rate
fun box so_max_pacing_rate() : I32 val
Returns
- I32 val
so_multipoint
fun box so_multipoint() : I32 val
Returns
- I32 val
so_netsvc_marking_level
fun box so_netsvc_marking_level() : I32 val
Returns
- I32 val
so_net_service_type
fun box so_net_service_type() : I32 val
Returns
- I32 val
so_nke
fun box so_nke() : I32 val
Returns
- I32 val
so_noaddrerr
fun box so_noaddrerr() : I32 val
Returns
- I32 val
so_nofcs
fun box so_nofcs() : I32 val
Returns
- I32 val
so_nosigpipe
fun box so_nosigpipe() : I32 val
Returns
- I32 val
so_notifyconflict
fun box so_notifyconflict() : I32 val
Returns
- I32 val
so_no_check
fun box so_no_check() : I32 val
Returns
- I32 val
so_no_ddp
fun box so_no_ddp() : I32 val
Returns
- I32 val
so_no_offload
fun box so_no_offload() : I32 val
Returns
- I32 val
so_np_extensions
fun box so_np_extensions() : I32 val
Returns
- I32 val
so_nread
fun box so_nread() : I32 val
Returns
- I32 val
so_numrcvpkt
fun box so_numrcvpkt() : I32 val
Returns
- I32 val
so_nwrite
fun box so_nwrite() : I32 val
Returns
- I32 val
so_oobinline
fun box so_oobinline() : I32 val
Returns
- I32 val
so_original_dst
fun box so_original_dst() : I32 val
Returns
- I32 val
so_passcred
fun box so_passcred() : I32 val
Returns
- I32 val
so_passsec
fun box so_passsec() : I32 val
Returns
- I32 val
so_peek_off
fun box so_peek_off() : I32 val
Returns
- I32 val
so_peercred
fun box so_peercred() : I32 val
Returns
- I32 val
so_peerlabel
fun box so_peerlabel() : I32 val
Returns
- I32 val
so_peername
fun box so_peername() : I32 val
Returns
- I32 val
so_peersec
fun box so_peersec() : I32 val
Returns
- I32 val
so_port_scalability
fun box so_port_scalability() : I32 val
Returns
- I32 val
so_priority
fun box so_priority() : I32 val
Returns
- I32 val
so_protocol
fun box so_protocol() : I32 val
Returns
- I32 val
so_protocol_info
fun box so_protocol_info() : I32 val
Returns
- I32 val
so_prototype
fun box so_prototype() : I32 val
Returns
- I32 val
so_proxyusr
fun box so_proxyusr() : I32 val
Returns
- I32 val
so_randomport
fun box so_randomport() : I32 val
Returns
- I32 val
so_rcvbuf
fun box so_rcvbuf() : I32 val
Returns
- I32 val
so_rcvbufforce
fun box so_rcvbufforce() : I32 val
Returns
- I32 val
so_rcvlowat
fun box so_rcvlowat() : I32 val
Returns
- I32 val
so_rcvtimeo
fun box so_rcvtimeo() : I32 val
Returns
- I32 val
so_rds_transport
fun box so_rds_transport() : I32 val
Returns
- I32 val
so_reuseaddr
fun box so_reuseaddr() : I32 val
Returns
- I32 val
so_reuseport
fun box so_reuseport() : I32 val
Returns
- I32 val
so_reuseshareuid
fun box so_reuseshareuid() : I32 val
Returns
- I32 val
so_rfcomm_fc_info
fun box so_rfcomm_fc_info() : I32 val
Returns
- I32 val
so_rfcomm_mtu
fun box so_rfcomm_mtu() : I32 val
Returns
- I32 val
so_rxq_ovfl
fun box so_rxq_ovfl() : I32 val
Returns
- I32 val
so_sco_conninfo
fun box so_sco_conninfo() : I32 val
Returns
- I32 val
so_sco_mtu
fun box so_sco_mtu() : I32 val
Returns
- I32 val
so_security_authentication
fun box so_security_authentication() : I32 val
Returns
- I32 val
so_security_encryption_network
fun box so_security_encryption_network() : I32 val
Returns
- I32 val
so_security_encryption_transport
fun box so_security_encryption_transport() : I32 val
Returns
- I32 val
so_select_err_queue
fun box so_select_err_queue() : I32 val
Returns
- I32 val
so_setclp
fun box so_setclp() : I32 val
Returns
- I32 val
so_setfib
fun box so_setfib() : I32 val
Returns
- I32 val
so_sndbuf
fun box so_sndbuf() : I32 val
Returns
- I32 val
so_sndbufforce
fun box so_sndbufforce() : I32 val
Returns
- I32 val
so_sndlowat
fun box so_sndlowat() : I32 val
Returns
- I32 val
so_sndtimeo
fun box so_sndtimeo() : I32 val
Returns
- I32 val
so_timestamp
fun box so_timestamp() : I32 val
Returns
- I32 val
so_timestamping
fun box so_timestamping() : I32 val
Returns
- I32 val
so_timestampns
fun box so_timestampns() : I32 val
Returns
- I32 val
so_timestamp_monotonic
fun box so_timestamp_monotonic() : I32 val
Returns
- I32 val
so_type
fun box so_type() : I32 val
Returns
- I32 val
so_upcallclosewait
fun box so_upcallclosewait() : I32 val
Returns
- I32 val
so_update_accept_context
fun box so_update_accept_context() : I32 val
Returns
- I32 val
so_useloopback
fun box so_useloopback() : I32 val
Returns
- I32 val
so_user_cookie
fun box so_user_cookie() : I32 val
Returns
- I32 val
so_vendor
fun box so_vendor() : I32 val
Returns
- I32 val
so_vm_sockets_buffer_max_size
fun box so_vm_sockets_buffer_max_size() : I32 val
Returns
- I32 val
so_vm_sockets_buffer_min_size
fun box so_vm_sockets_buffer_min_size() : I32 val
Returns
- I32 val
so_vm_sockets_buffer_size
fun box so_vm_sockets_buffer_size() : I32 val
Returns
- I32 val
so_vm_sockets_connect_timeout
fun box so_vm_sockets_connect_timeout() : I32 val
Returns
- I32 val
so_vm_sockets_nonblock_txrx
fun box so_vm_sockets_nonblock_txrx() : I32 val
Returns
- I32 val
so_vm_sockets_peer_host_vm_id
fun box so_vm_sockets_peer_host_vm_id() : I32 val
Returns
- I32 val
so_vm_sockets_trusted
fun box so_vm_sockets_trusted() : I32 val
Returns
- I32 val
so_wantmore
fun box so_wantmore() : I32 val
Returns
- I32 val
so_wantoobflag
fun box so_wantoobflag() : I32 val
Returns
- I32 val
so_wifi_status
fun box so_wifi_status() : I32 val
Returns
- I32 val
tcp6_mss
fun box tcp6_mss() : I32 val
Returns
- I32 val
tcpci_flag_lossrecovery
fun box tcpci_flag_lossrecovery() : I32 val
Returns
- I32 val
tcpci_flag_reordering_detected
fun box tcpci_flag_reordering_detected() : I32 val
Returns
- I32 val
tcpci_opt_ecn
fun box tcpci_opt_ecn() : I32 val
Returns
- I32 val
tcpci_opt_sack
fun box tcpci_opt_sack() : I32 val
Returns
- I32 val
tcpci_opt_timestamps
fun box tcpci_opt_timestamps() : I32 val
Returns
- I32 val
tcpci_opt_wscale
fun box tcpci_opt_wscale() : I32 val
Returns
- I32 val
tcpf_ca_cwr
fun box tcpf_ca_cwr() : I32 val
Returns
- I32 val
tcpf_ca_disorder
fun box tcpf_ca_disorder() : I32 val
Returns
- I32 val
tcpf_ca_loss
fun box tcpf_ca_loss() : I32 val
Returns
- I32 val
tcpf_ca_open
fun box tcpf_ca_open() : I32 val
Returns
- I32 val
tcpf_ca_recovery
fun box tcpf_ca_recovery() : I32 val
Returns
- I32 val
tcpi_opt_ecn
fun box tcpi_opt_ecn() : I32 val
Returns
- I32 val
tcpi_opt_ecn_seen
fun box tcpi_opt_ecn_seen() : I32 val
Returns
- I32 val
tcpi_opt_sack
fun box tcpi_opt_sack() : I32 val
Returns
- I32 val
tcpi_opt_syn_data
fun box tcpi_opt_syn_data() : I32 val
Returns
- I32 val
tcpi_opt_timestamps
fun box tcpi_opt_timestamps() : I32 val
Returns
- I32 val
tcpi_opt_toe
fun box tcpi_opt_toe() : I32 val
Returns
- I32 val
tcpi_opt_wscale
fun box tcpi_opt_wscale() : I32 val
Returns
- I32 val
tcpolen_cc
fun box tcpolen_cc() : I32 val
Returns
- I32 val
tcpolen_cc_appa
fun box tcpolen_cc_appa() : I32 val
Returns
- I32 val
tcpolen_eol
fun box tcpolen_eol() : I32 val
Returns
- I32 val
tcpolen_fastopen_req
fun box tcpolen_fastopen_req() : I32 val
Returns
- I32 val
tcpolen_fast_open_empty
fun box tcpolen_fast_open_empty() : I32 val
Returns
- I32 val
tcpolen_fast_open_max
fun box tcpolen_fast_open_max() : I32 val
Returns
- I32 val
tcpolen_fast_open_min
fun box tcpolen_fast_open_min() : I32 val
Returns
- I32 val
tcpolen_maxseg
fun box tcpolen_maxseg() : I32 val
Returns
- I32 val
tcpolen_nop
fun box tcpolen_nop() : I32 val
Returns
- I32 val
tcpolen_pad
fun box tcpolen_pad() : I32 val
Returns
- I32 val
tcpolen_sack
fun box tcpolen_sack() : I32 val
Returns
- I32 val
tcpolen_sackhdr
fun box tcpolen_sackhdr() : I32 val
Returns
- I32 val
tcpolen_sack_permitted
fun box tcpolen_sack_permitted() : I32 val
Returns
- I32 val
tcpolen_signature
fun box tcpolen_signature() : I32 val
Returns
- I32 val
tcpolen_timestamp
fun box tcpolen_timestamp() : I32 val
Returns
- I32 val
tcpolen_tstamp_appa
fun box tcpolen_tstamp_appa() : I32 val
Returns
- I32 val
tcpolen_window
fun box tcpolen_window() : I32 val
Returns
- I32 val
tcpopt_cc
fun box tcpopt_cc() : I32 val
Returns
- I32 val
tcpopt_ccecho
fun box tcpopt_ccecho() : I32 val
Returns
- I32 val
tcpopt_ccnew
fun box tcpopt_ccnew() : I32 val
Returns
- I32 val
tcpopt_eol
fun box tcpopt_eol() : I32 val
Returns
- I32 val
tcpopt_fastopen
fun box tcpopt_fastopen() : I32 val
Returns
- I32 val
tcpopt_fast_open
fun box tcpopt_fast_open() : I32 val
Returns
- I32 val
tcpopt_maxseg
fun box tcpopt_maxseg() : I32 val
Returns
- I32 val
tcpopt_multipath
fun box tcpopt_multipath() : I32 val
Returns
- I32 val
tcpopt_nop
fun box tcpopt_nop() : I32 val
Returns
- I32 val
tcpopt_pad
fun box tcpopt_pad() : I32 val
Returns
- I32 val
tcpopt_sack
fun box tcpopt_sack() : I32 val
Returns
- I32 val
tcpopt_sack_hdr
fun box tcpopt_sack_hdr() : I32 val
Returns
- I32 val
tcpopt_sack_permitted
fun box tcpopt_sack_permitted() : I32 val
Returns
- I32 val
tcpopt_sack_permit_hdr
fun box tcpopt_sack_permit_hdr() : I32 val
Returns
- I32 val
tcpopt_signature
fun box tcpopt_signature() : I32 val
Returns
- I32 val
tcpopt_timestamp
fun box tcpopt_timestamp() : I32 val
Returns
- I32 val
tcpopt_tstamp_hdr
fun box tcpopt_tstamp_hdr() : I32 val
Returns
- I32 val
tcpopt_window
fun box tcpopt_window() : I32 val
Returns
- I32 val
tcp_ca_name_max
fun box tcp_ca_name_max() : I32 val
Returns
- I32 val
tcp_ccalgoopt
fun box tcp_ccalgoopt() : I32 val
Returns
- I32 val
tcp_cc_info
fun box tcp_cc_info() : I32 val
Returns
- I32 val
tcp_congestion
fun box tcp_congestion() : I32 val
Returns
- I32 val
tcp_connectiontimeout
fun box tcp_connectiontimeout() : I32 val
Returns
- I32 val
tcp_connection_info
fun box tcp_connection_info() : I32 val
Returns
- I32 val
tcp_cookie_in_always
fun box tcp_cookie_in_always() : I32 val
Returns
- I32 val
tcp_cookie_max
fun box tcp_cookie_max() : I32 val
Returns
- I32 val
tcp_cookie_min
fun box tcp_cookie_min() : I32 val
Returns
- I32 val
tcp_cookie_out_never
fun box tcp_cookie_out_never() : I32 val
Returns
- I32 val
tcp_cookie_pair_size
fun box tcp_cookie_pair_size() : I32 val
Returns
- I32 val
tcp_cookie_transactions
fun box tcp_cookie_transactions() : I32 val
Returns
- I32 val
tcp_cork
fun box tcp_cork() : I32 val
Returns
- I32 val
tcp_defer_accept
fun box tcp_defer_accept() : I32 val
Returns
- I32 val
tcp_enable_ecn
fun box tcp_enable_ecn() : I32 val
Returns
- I32 val
tcp_fastopen
fun box tcp_fastopen() : I32 val
Returns
- I32 val
tcp_function_blk
fun box tcp_function_blk() : I32 val
Returns
- I32 val
tcp_function_name_len_max
fun box tcp_function_name_len_max() : I32 val
Returns
- I32 val
tcp_info
fun box tcp_info() : I32 val
Returns
- I32 val
tcp_keepalive
fun box tcp_keepalive() : I32 val
Returns
- I32 val
tcp_keepcnt
fun box tcp_keepcnt() : I32 val
Returns
- I32 val
tcp_keepidle
fun box tcp_keepidle() : I32 val
Returns
- I32 val
tcp_keepinit
fun box tcp_keepinit() : I32 val
Returns
- I32 val
tcp_keepintvl
fun box tcp_keepintvl() : I32 val
Returns
- I32 val
tcp_linger2
fun box tcp_linger2() : I32 val
Returns
- I32 val
tcp_maxburst
fun box tcp_maxburst() : I32 val
Returns
- I32 val
tcp_maxhlen
fun box tcp_maxhlen() : I32 val
Returns
- I32 val
tcp_maxolen
fun box tcp_maxolen() : I32 val
Returns
- I32 val
tcp_maxseg
fun box tcp_maxseg() : I32 val
Returns
- I32 val
tcp_maxwin
fun box tcp_maxwin() : I32 val
Returns
- I32 val
tcp_max_sack
fun box tcp_max_sack() : I32 val
Returns
- I32 val
tcp_max_winshift
fun box tcp_max_winshift() : I32 val
Returns
- I32 val
tcp_md5sig
fun box tcp_md5sig() : I32 val
Returns
- I32 val
tcp_md5sig_maxkeylen
fun box tcp_md5sig_maxkeylen() : I32 val
Returns
- I32 val
tcp_minmss
fun box tcp_minmss() : I32 val
Returns
- I32 val
tcp_mss
fun box tcp_mss() : I32 val
Returns
- I32 val
tcp_mss_default
fun box tcp_mss_default() : I32 val
Returns
- I32 val
tcp_mss_desired
fun box tcp_mss_desired() : I32 val
Returns
- I32 val
tcp_nodelay
fun box tcp_nodelay() : I32 val
Returns
- I32 val
tcp_noopt
fun box tcp_noopt() : I32 val
Returns
- I32 val
tcp_nopush
fun box tcp_nopush() : I32 val
Returns
- I32 val
tcp_notsent_lowat
fun box tcp_notsent_lowat() : I32 val
Returns
- I32 val
tcp_pcap_in
fun box tcp_pcap_in() : I32 val
Returns
- I32 val
tcp_pcap_out
fun box tcp_pcap_out() : I32 val
Returns
- I32 val
tcp_queue_seq
fun box tcp_queue_seq() : I32 val
Returns
- I32 val
tcp_quickack
fun box tcp_quickack() : I32 val
Returns
- I32 val
tcp_repair
fun box tcp_repair() : I32 val
Returns
- I32 val
tcp_repair_options
fun box tcp_repair_options() : I32 val
Returns
- I32 val
tcp_repair_queue
fun box tcp_repair_queue() : I32 val
Returns
- I32 val
tcp_rxt_conndroptime
fun box tcp_rxt_conndroptime() : I32 val
Returns
- I32 val
tcp_rxt_findrop
fun box tcp_rxt_findrop() : I32 val
Returns
- I32 val
tcp_saved_syn
fun box tcp_saved_syn() : I32 val
Returns
- I32 val
tcp_save_syn
fun box tcp_save_syn() : I32 val
Returns
- I32 val
tcp_sendmoreacks
fun box tcp_sendmoreacks() : I32 val
Returns
- I32 val
tcp_syncnt
fun box tcp_syncnt() : I32 val
Returns
- I32 val
tcp_s_data_in
fun box tcp_s_data_in() : I32 val
Returns
- I32 val
tcp_s_data_out
fun box tcp_s_data_out() : I32 val
Returns
- I32 val
tcp_thin_dupack
fun box tcp_thin_dupack() : I32 val
Returns
- I32 val
tcp_thin_linear_timeouts
fun box tcp_thin_linear_timeouts() : I32 val
Returns
- I32 val
tcp_timestamp
fun box tcp_timestamp() : I32 val
Returns
- I32 val
tcp_user_timeout
fun box tcp_user_timeout() : I32 val
Returns
- I32 val
tcp_vendor
fun box tcp_vendor() : I32 val
Returns
- I32 val
tcp_window_clamp
fun box tcp_window_clamp() : I32 val
Returns
- I32 val
tipc_addr_id
fun box tipc_addr_id() : I32 val
Returns
- I32 val
tipc_addr_mcast
fun box tipc_addr_mcast() : I32 val
Returns
- I32 val
tipc_addr_name
fun box tipc_addr_name() : I32 val
Returns
- I32 val
tipc_addr_nameseq
fun box tipc_addr_nameseq() : I32 val
Returns
- I32 val
tipc_cfg_srv
fun box tipc_cfg_srv() : I32 val
Returns
- I32 val
tipc_cluster_scope
fun box tipc_cluster_scope() : I32 val
Returns
- I32 val
tipc_conn_shutdown
fun box tipc_conn_shutdown() : I32 val
Returns
- I32 val
tipc_conn_timeout
fun box tipc_conn_timeout() : I32 val
Returns
- I32 val
tipc_critical_importance
fun box tipc_critical_importance() : I32 val
Returns
- I32 val
tipc_destname
fun box tipc_destname() : I32 val
Returns
- I32 val
tipc_dest_droppable
fun box tipc_dest_droppable() : I32 val
Returns
- I32 val
tipc_errinfo
fun box tipc_errinfo() : I32 val
Returns
- I32 val
tipc_err_no_name
fun box tipc_err_no_name() : I32 val
Returns
- I32 val
tipc_err_no_node
fun box tipc_err_no_node() : I32 val
Returns
- I32 val
tipc_err_no_port
fun box tipc_err_no_port() : I32 val
Returns
- I32 val
tipc_err_overload
fun box tipc_err_overload() : I32 val
Returns
- I32 val
tipc_high_importance
fun box tipc_high_importance() : I32 val
Returns
- I32 val
tipc_importance
fun box tipc_importance() : I32 val
Returns
- I32 val
tipc_link_state
fun box tipc_link_state() : I32 val
Returns
- I32 val
tipc_low_importance
fun box tipc_low_importance() : I32 val
Returns
- I32 val
tipc_max_bearer_name
fun box tipc_max_bearer_name() : I32 val
Returns
- I32 val
tipc_max_if_name
fun box tipc_max_if_name() : I32 val
Returns
- I32 val
tipc_max_link_name
fun box tipc_max_link_name() : I32 val
Returns
- I32 val
tipc_max_media_name
fun box tipc_max_media_name() : I32 val
Returns
- I32 val
tipc_max_user_msg_size
fun box tipc_max_user_msg_size() : I32 val
Returns
- I32 val
tipc_medium_importance
fun box tipc_medium_importance() : I32 val
Returns
- I32 val
tipc_node_recvq_depth
fun box tipc_node_recvq_depth() : I32 val
Returns
- I32 val
tipc_node_scope
fun box tipc_node_scope() : I32 val
Returns
- I32 val
tipc_ok
fun box tipc_ok() : I32 val
Returns
- I32 val
tipc_published
fun box tipc_published() : I32 val
Returns
- I32 val
tipc_reserved_types
fun box tipc_reserved_types() : I32 val
Returns
- I32 val
tipc_retdata
fun box tipc_retdata() : I32 val
Returns
- I32 val
tipc_sock_recvq_depth
fun box tipc_sock_recvq_depth() : I32 val
Returns
- I32 val
tipc_src_droppable
fun box tipc_src_droppable() : I32 val
Returns
- I32 val
tipc_subscr_timeout
fun box tipc_subscr_timeout() : I32 val
Returns
- I32 val
tipc_sub_cancel
fun box tipc_sub_cancel() : I32 val
Returns
- I32 val
tipc_sub_ports
fun box tipc_sub_ports() : I32 val
Returns
- I32 val
tipc_sub_service
fun box tipc_sub_service() : I32 val
Returns
- I32 val
tipc_top_srv
fun box tipc_top_srv() : I32 val
Returns
- I32 val
tipc_wait_forever
fun box tipc_wait_forever() : I32 val
Returns
- I32 val
tipc_withdrawn
fun box tipc_withdrawn() : I32 val
Returns
- I32 val
tipc_zone_scope
fun box tipc_zone_scope() : I32 val
Returns
- I32 val
ttcp_client_snd_wnd
fun box ttcp_client_snd_wnd() : I32 val
Returns
- I32 val
udp_cork
fun box udp_cork() : I32 val
Returns
- I32 val
udp_encap
fun box udp_encap() : I32 val
Returns
- I32 val
udp_encap_espinudp
fun box udp_encap_espinudp() : I32 val
Returns
- I32 val
udp_encap_espinudp_maxfraglen
fun box udp_encap_espinudp_maxfraglen() : I32 val
Returns
- I32 val
udp_encap_espinudp_non_ike
fun box udp_encap_espinudp_non_ike() : I32 val
Returns
- I32 val
udp_encap_espinudp_port
fun box udp_encap_espinudp_port() : I32 val
Returns
- I32 val
udp_encap_l2tpinudp
fun box udp_encap_l2tpinudp() : I32 val
Returns
- I32 val
udp_nocksum
fun box udp_nocksum() : I32 val
Returns
- I32 val
udp_no_check6_rx
fun box udp_no_check6_rx() : I32 val
Returns
- I32 val
udp_no_check6_tx
fun box udp_no_check6_tx() : I32 val
Returns
- I32 val
udp_vendor
fun box udp_vendor() : I32 val
Returns
- I32 val
so_rcvtimeo_old
fun box so_rcvtimeo_old() : I32 val
Returns
- I32 val
so_rcvtimeo_new
fun box so_rcvtimeo_new() : I32 val
Returns
- I32 val
so_sndtimeo_old
fun box so_sndtimeo_old() : I32 val
Returns
- I32 val
so_sndtimeo_new
fun box so_sndtimeo_new() : I32 val
Returns
- I32 val
eq
fun box eq( that: OSSockOpt val) : Bool val
Parameters
- that: OSSockOpt val
Returns
- Bool val
ne
fun box ne( that: OSSockOpt val) : Bool val
Parameters
- that: OSSockOpt val
Returns
- Bool val
© 2016-2020, The Pony Developers
© 2014-2015, Causality Ltd.
Licensed under the BSD 2-Clause License.
https://stdlib.ponylang.io/net-OSSockOpt