| /lib/liblwip/src/core/ |
| D | stats.c | 72 stats_display_proto(struct stats_proto *proto, const char *name) in stats_display_proto() argument 75 LWIP_PLATFORM_DIAG(("xmit: %"STAT_COUNTER_F"\n\t", proto->xmit)); in stats_display_proto() 76 LWIP_PLATFORM_DIAG(("recv: %"STAT_COUNTER_F"\n\t", proto->recv)); in stats_display_proto() 77 LWIP_PLATFORM_DIAG(("fw: %"STAT_COUNTER_F"\n\t", proto->fw)); in stats_display_proto() 78 LWIP_PLATFORM_DIAG(("drop: %"STAT_COUNTER_F"\n\t", proto->drop)); in stats_display_proto() 79 LWIP_PLATFORM_DIAG(("chkerr: %"STAT_COUNTER_F"\n\t", proto->chkerr)); in stats_display_proto() 80 LWIP_PLATFORM_DIAG(("lenerr: %"STAT_COUNTER_F"\n\t", proto->lenerr)); in stats_display_proto() 81 LWIP_PLATFORM_DIAG(("memerr: %"STAT_COUNTER_F"\n\t", proto->memerr)); in stats_display_proto() 82 LWIP_PLATFORM_DIAG(("rterr: %"STAT_COUNTER_F"\n\t", proto->rterr)); in stats_display_proto() 83 LWIP_PLATFORM_DIAG(("proterr: %"STAT_COUNTER_F"\n\t", proto->proterr)); in stats_display_proto() [all …]
|
| D | raw.c | 80 s16_t proto; in raw_input() local 86 proto = IPH_PROTO(iphdr); in raw_input() 93 if ((pcb->protocol == proto) && in raw_input() 331 raw_new(u8_t proto) in raw_new() argument 342 pcb->protocol = proto; in raw_new()
|
| /lib/liblwip/src/include/ipv4/lwip/ |
| D | ip.h | 162 #define IPH_PROTO_SET(hdr, proto) (hdr)->_proto = (u8_t)(proto) 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,
|
| D | inet_chksum.h | 77 u8_t proto, u16_t proto_len); 80 u8_t proto, u16_t proto_len, u16_t chksum_len);
|
| /lib/liblwip/src/core/ipv6/ |
| D | ip6.c | 262 u8_t proto, struct netif *netif) in ip_output_if() argument 283 iphdr->nexthdr = proto; in ip_output_if() 318 u8_t ttl, u8_t proto) in ip_output() argument 327 return ip_output_if (p, src, dest, ttl, proto, netif); in ip_output() 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()
|
| D | inet6.c | 82 u8_t proto, u32_t proto_len) in inet_chksum_pseudo() argument 112 acc += (u16_t)htons((u16_t)proto); in inet_chksum_pseudo()
|
| /lib/liblwip/src/include/ipv6/lwip/ |
| D | ip.h | 111 u8_t ttl, u8_t proto); 114 u8_t ttl, u8_t proto,
|
| D | inet.h | 47 u8_t proto, u32_t proto_len);
|
| /lib/liblwip/src/core/ipv4/ |
| D | inet_chksum.c | 274 u8_t proto, u16_t proto_len) in inet_chksum_pseudo() argument 308 acc += (u32_t)htons((u16_t)proto); in inet_chksum_pseudo() 334 u8_t proto, u16_t proto_len, u16_t chksum_len) in inet_chksum_pseudo_partial() argument 374 acc += (u32_t)htons((u16_t)proto); in inet_chksum_pseudo_partial()
|
| D | ip.c | 643 u8_t proto, struct netif *netif) 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 717 IPH_PROTO_SET(iphdr, proto); 719 chk_sum += LWIP_MAKE_U16(proto, ttl); 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);
|
| /lib/liblwip/src/netif/ppp/ |
| D | auth.c | 686 np_up(int unit, u16_t proto) in np_up() argument 689 LWIP_UNUSED_ARG(proto); in np_up() 691 AUTHDEBUG(LOG_INFO, ("np_up: %d proto=%X\n", unit, proto)); in np_up() 716 np_down(int unit, u16_t proto) in np_down() argument 719 LWIP_UNUSED_ARG(proto); in np_down() 721 AUTHDEBUG(LOG_INFO, ("np_down: %d proto=%X\n", unit, proto)); in np_down() 731 np_finished(int unit, u16_t proto) in np_finished() argument 734 LWIP_UNUSED_ARG(proto); in np_finished() 736 AUTHDEBUG(LOG_INFO, ("np_finished: %d proto=%X\n", unit, proto)); in np_finished()
|
| D | ppp.c | 1375 sifnpmode(int u, int proto, enum NPmode mode) in sifnpmode() argument 1378 LWIP_UNUSED_ARG(proto); in sifnpmode() 1595 u16_t proto; member 1610 protocol = ((struct pppInputHeader *)nb->payload)->proto; in pppInput() 1956 pih->proto = pcrx->inProtocol; in pppInProc() 2001 pih->proto = inProtocol; in pppInProcOverEthernet()
|
| D | ppp_impl.h | 346 int sifnpmode (int u, int proto, enum NPmode mode);
|
| /lib/liblwip/src/include/lwip/ |
| D | raw.h | 79 struct raw_pcb * raw_new (u8_t proto);
|
| D | api_msg.h | 74 u8_t proto; member
|
| D | stats.h | 274 void stats_display_proto(struct stats_proto *proto, const char *name); 281 #define stats_display_proto(proto, name) argument
|
| D | api.h | 215 netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto,
|
| /lib/liblwip/src/api/ |
| D | api_lib.c | 68 netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto, netconn_callback callback) in netconn_new_with_proto_and_callback() argument 76 msg.msg.msg.n.proto = proto; in netconn_new_with_proto_and_callback()
|
| D | api_msg.c | 498 msg->conn->pcb.raw = raw_new(msg->msg.n.proto);
|
| /lib/liblwip/src/include/netif/ |
| D | etharp.h | 117 PACK_STRUCT_FIELD(u16_t proto);
|
| /lib/liblwip/test/unit/etharp/ |
| D | test_etharp.c | 92 etharphdr->proto = htons(ETHTYPE_IP); in create_arp_response()
|
| /lib/liblwip/src/netif/ |
| D | etharp.c | 725 (hdr->proto != PP_HTONS(ETHTYPE_IP))) { 728 hdr->hwtype, hdr->hwlen, hdr->proto, hdr->protolen)); 1232 hdr->proto = PP_HTONS(ETHTYPE_IP);
|
| /lib/liblwip/ |
| D | CHANGELOG | 2426 changed raw_pcb.protocol from u16_t to u8_t since for IPv4 and IPv6, proto
|