Home
last modified time | relevance | path

Searched refs:tos (Results 1 – 11 of 11) sorted by relevance

/lib/lwip/lwip/src/include/lwip/
A Dip.h85 u8_t tos; \
239 #define ip_output(p, src, dest, ttl, tos, proto) \ argument
247 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument
290 #define ip_output(p, src, dest, ttl, tos, proto) \ argument
291 ip4_output(p, src, dest, ttl, tos, proto)
292 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument
293 ip4_output_if(p, src, dest, ttl, tos, proto, netif)
310 #define ip_output(p, src, dest, ttl, tos, proto) \ argument
311 ip6_output(p, src, dest, ttl, tos, proto)
312 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument
[all …]
A Dip4.h73 u8_t ttl, u8_t tos, u8_t proto);
75 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif);
77 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif);
80 u8_t ttl, u8_t tos, u8_t proto, struct netif_hint *netif_hint);
84 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options,
87 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options,
A Dsockets.h373 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument
390 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
/lib/lwip/lwip/src/core/ipv4/
A Dip4.c822 u8_t ttl, u8_t tos, argument
826 return ip4_output_if_opt(p, src, dest, ttl, tos, proto, netif, NULL, 0);
849 return ip4_output_if_opt_src(p, src_used, dest, ttl, tos, proto, netif,
852 return ip4_output_if_src(p, src_used, dest, ttl, tos, proto, netif);
862 u8_t ttl, u8_t tos, argument
866 return ip4_output_if_opt_src(p, src, dest, ttl, tos, proto, netif, NULL, 0);
955 IPH_TOS_SET(iphdr, tos);
957 chk_sum += PP_NTOHS(tos | (iphdr->_v_hl << 8));
1063 u8_t ttl, u8_t tos, u8_t proto) argument
1076 return ip4_output_if(p, src, dest, ttl, tos, proto, netif);
[all …]
/lib/lwip/lwip/src/include/lwip/prot/
A Dip4.h118 #define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos) argument
/lib/lwip/lwip/src/core/
A Dtcp_out.c1604 pcb->tos, IP_PROTO_TCP, netif); in tcp_output_segment()
1943 u8_t ttl, tos; in tcp_output_control_segment_netif() local
1957 tos = pcb->tos; in tcp_output_control_segment_netif()
1961 tos = 0; in tcp_output_control_segment_netif()
1964 err = ip_output_if(p, src, dst, ttl, tos, IP_PROTO_TCP, netif); in tcp_output_control_segment_netif()
A Draw.c527 err = ip_output_if(q, src_ip, dst_ip, ttl, pcb->tos, pcb->protocol, netif); in raw_sendto_if_src()
A Dtcp.c895 lpcb->tos = pcb->tos; in tcp_listen_with_backlog_and_err()
A Dudp.c893 err = ip_output_if_src(q, src_ip, dst_ip, ttl, pcb->tos, ip_proto, netif); in udp_sendto_if_src_chksum()
/lib/lwip/lwip/src/api/
A Dsockets.c3077 *(int *)optval = sock->conn->pcb.ip->tos; in lwip_getsockopt_impl()
3522 sock->conn->pcb.ip->tos = (u8_t)(*(const int *)optval); in lwip_setsockopt_impl()
3524 s, sock->conn->pcb.ip->tos)); in lwip_setsockopt_impl()
/lib/lwip/lwip/
A DCHANGELOG3008 Use this new field to access to common pcb fields (ttl, tos, so_options, etc...).

Completed in 46 milliseconds