/lk-master/external/lib/lwip/include/ipv4/lwip/ |
A D | ip.h | 83 u8_t tos; \ 157 #define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos) argument 178 u8_t ttl, u8_t tos, u8_t proto); 180 u8_t ttl, u8_t tos, u8_t proto, 184 u8_t ttl, u8_t tos, u8_t proto, u8_t *addr_hint); 188 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options,
|
/lk-master/external/lib/lwip/core/ipv4/ |
A D | ip.c | 642 u8_t ttl, u8_t tos, argument 646 return ip_output_if_opt(p, src, dest, ttl, tos, proto, netif, NULL, 0); 656 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, argument 730 IPH_TOS_SET(iphdr, tos); 732 chk_sum += LWIP_MAKE_U16(tos, iphdr->_v_hl); 819 u8_t ttl, u8_t tos, u8_t proto) argument 834 return ip_output_if(p, src, dest, ttl, tos, proto, netif); 858 u8_t ttl, u8_t tos, u8_t proto, u8_t *addr_hint) argument 875 err = ip_output_if(p, src, dest, ttl, tos, proto, netif);
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | sockets.h | 198 #define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK) argument 215 #define IPTOS_PREC(tos) ((tos) & IPTOS_PREC_MASK) argument
|
/lk-master/external/lib/lwip/include/ipv6/lwip/ |
A D | ip.h | 76 u8_t tos; \
|
/lk-master/external/lib/lwip/core/ipv6/ |
A D | ip6.c | 333 u8_t ttl, u8_t tos, u8_t proto, u8_t *addr_hint) in ip_output_hinted() argument 345 err = ip_output_if(p, src, dest, ttl, tos, proto, netif); in ip_output_hinted()
|
/lk-master/external/lib/lwip/core/ |
A D | raw.c | 267 err = ip_output_if (q, src_ip, ipaddr, pcb->ttl, pcb->tos, pcb->protocol, netif); in raw_sendto()
|
A D | tcp_out.c | 879 ip_output_hinted(p, &(pcb->local_ip), &(pcb->remote_ip), pcb->ttl, pcb->tos, in tcp_send_empty_ack() 882 ip_output(p, &(pcb->local_ip), &(pcb->remote_ip), pcb->ttl, pcb->tos, in tcp_send_empty_ack() 1166 ip_output_hinted(seg->p, &(pcb->local_ip), &(pcb->remote_ip), pcb->ttl, pcb->tos, in tcp_output_segment() 1169 ip_output(seg->p, &(pcb->local_ip), &(pcb->remote_ip), pcb->ttl, pcb->tos, in tcp_output_segment()
|
A D | udp.c | 693 err = ip_output_if(q, src_ip, dst_ip, pcb->ttl, pcb->tos, IP_PROTO_UDPLITE, netif); 728 err = ip_output_if(q, src_ip, dst_ip, pcb->ttl, pcb->tos, IP_PROTO_UDP, netif);
|
A D | tcp.c | 556 lpcb->tos = pcb->tos; in tcp_listen_with_backlog() 1313 pcb->tos = 0; in tcp_alloc()
|
/lk-master/external/lib/lwip/api/ |
A D | sockets.c | 1766 *(int*)optval = sock->conn->pcb.ip->tos; 2157 sock->conn->pcb.ip->tos = (u8_t)(*(int*)optval); 2159 s, sock->conn->pcb.ip->tos));
|