Searched refs:flowinfo (Results 1 – 11 of 11) sorted by relevance
/third_party/libnl/lib/route/link/ |
D | ip6tnl.c | 54 uint32_t flowinfo; member 144 ip6_tnl->flowinfo = nla_get_u32(tb[IFLA_IPTUN_FLOWINFO]); in ip6_tnl_parse() 190 NLA_PUT_U32(msg, IFLA_IPTUN_FLOWINFO, ip6_tnl->flowinfo); in ip6_tnl_put_attrs() 277 nl_dump_line(p, " (%x)\n", ip6_tnl->flowinfo); in ip6_tnl_dump_details() 596 int rtnl_link_ip6_tnl_set_flowinfo(struct rtnl_link *link, uint32_t flowinfo) in rtnl_link_ip6_tnl_set_flowinfo() argument 602 ip6_tnl->flowinfo = flowinfo; in rtnl_link_ip6_tnl_set_flowinfo() 620 return ip6_tnl->flowinfo; in rtnl_link_ip6_tnl_get_flowinfo()
|
/third_party/glib/gio/ |
D | ginetsocketaddress.c | 54 guint32 flowinfo; member 104 g_value_set_uint (value, address->priv->flowinfo); in g_inet_socket_address_get_property() 139 address->priv->flowinfo = g_value_get_uint (value); in g_inet_socket_address_set_property() 227 sock->sin6_flowinfo = addr->priv->flowinfo; in g_inet_socket_address_to_native() 522 return address->priv->flowinfo; in g_inet_socket_address_get_flowinfo()
|
/third_party/glib/gio/tests/ |
D | inet-address.c | 191 guint32 flowinfo; in test_socket_address() local 224 "flowinfo", &flowinfo, in test_socket_address() 231 g_assert (flowinfo == 10); in test_socket_address()
|
/third_party/libnl/include/netlink/route/link/ |
D | ip6tnl.h | 49 extern int rtnl_link_ip6_tnl_set_flowinfo(struct rtnl_link *link, uint32_t flowinfo);
|
/third_party/python/Modules/ |
D | socketmodule.c | 1832 unsigned int flowinfo, scope_id; in getsockaddrarg() local 1833 flowinfo = scope_id = 0; in getsockaddrarg() 1844 idna_converter, &host, &port, &flowinfo, in getsockaddrarg() 1866 if (flowinfo > 0xfffff) { in getsockaddrarg() 1874 addr->sin6_flowinfo = htonl(flowinfo); in getsockaddrarg() 6563 unsigned int flowinfo, scope_id; local 6570 flags = flowinfo = scope_id = 0; 6579 &hostp, &port, &flowinfo, &scope_id)) 6583 if (flowinfo > 0xfffff) { 6625 sin6->sin6_flowinfo = htonl(flowinfo);
|
/third_party/python/Lib/asyncio/ |
D | base_events.py | 103 def _ipaddr_info(host, port, family, type, proto, flowinfo=0, scopeid=0): argument 152 return af, type, proto, '', (host, port, flowinfo, scopeid)
|
/third_party/python/Doc/library/ |
D | socket.rst | 80 - For :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo, 81 scope_id)`` is used, where *flowinfo* and *scope_id* represent the ``sin6_flowinfo`` 83 :mod:`socket` module methods, *flowinfo* and *scope_id* can be omitted just for 786 :const:`AF_INET`, a ``(address, port, flowinfo, scope_id)`` 4-tuple for
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_output.c | 4523 uint32_t flowlabel, flowinfo; local 4637 flowinfo = 0x06; 4638 flowinfo <<= 8; 4639 flowinfo |= tos_value; 4640 flowinfo <<= 20; 4641 flowinfo |= flowlabel; 4642 ip6h->ip6_flow = htonl(flowinfo);
|
/third_party/libnl/doc/ |
D | route.txt | 1230 extern int rtnl_link_ip6_tnl_set_flowinfo(struct rtnl_link *link, uint32_t flowinfo);
|
/third_party/glib/ |
D | NEWS | 6091 * The 'flowinfo' and 'scope_id' fields of GInetSocketAddress
|
/third_party/python/Misc/ |
D | HISTORY | 10234 - Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
|