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