| /lib/liblwip/src/include/ipv4/lwip/ |
| D | inet_chksum.h | 77 u8_t proto, u16_t proto_len); 80 u8_t proto, u16_t proto_len, u16_t chksum_len);
|
| D | icmp.h | 80 PACK_STRUCT_FIELD(u8_t type); 81 PACK_STRUCT_FIELD(u8_t code);
|
| /lib/liblwip/src/include/lwip/ |
| D | memp.h | 54 MEMP_POOL_HELPER_FIRST = ((u8_t) 63 MEMP_POOL_HELPER_LAST = ((u8_t)
|
| D | sockets.h | 52 u8_t sin_len; 53 u8_t sin_family; 60 u8_t sa_len; 61 u8_t sa_family;
|
| D | netbuf.h | 54 u8_t flags;
|
| D | tcpip.h | 101 err_t tcpip_callback_with_block(tcpip_callback_fn function, void *ctx, u8_t block);
|
| /lib/liblwip/src/core/ |
| D | tcp.c | 93 const u8_t tcp_backoff[13] = 96 const u8_t tcp_persist_backoff[7] = { 3, 6, 12, 24, 48, 96, 120 }; 119 u8_t tcp_active_pcbs_changed; 122 static u8_t tcp_timer; 123 static u8_t tcp_timer_ctr; 170 tcp_close_shutdown(struct tcp_pcb *pcb, u8_t rst_on_unacked_data) in tcp_close_shutdown() 519 tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog) in tcp_listen_with_backlog() 649 u8_t i; in tcp_new_port() 792 u8_t pcb_remove; /* flag if a PCB should be removed */ in tcp_slowtmr() 793 u8_t pcb_reset; /* flag if a RST should be sent when removing */ in tcp_slowtmr() [all …]
|
| D | raw.c | 75 u8_t 81 u8_t eaten = 0; in raw_input() 331 raw_new(u8_t proto) in raw_new()
|
| D | udp.c | 158 u8_t local_match; 159 u8_t broadcast; 358 u8_t p_header_changed = 0; 465 u8_t have_chksum, u16_t chksum) 501 u16_t dst_port, u8_t have_chksum, u16_t chksum) 559 u16_t dst_port, struct netif *netif, u8_t have_chksum, 769 u8_t rebind;
|
| D | netif.c | 78 static u8_t netif_num; 293 u8_t num; in netif_find() 617 u8_t clen = 0; in netif_loop_output() 719 u8_t clen = pbuf_clen(in); in netif_poll()
|
| D | tcp_in.c | 66 static u8_t flags; 69 static u8_t recv_flags; 100 u8_t hdrlen; in tcp_input() 109 tcphdr = (struct tcp_hdr *)((u8_t *)p->payload + IPH_HL(iphdr) * 4); in tcp_input() 578 u8_t acceptable = 0; in tcp_process() 935 if ((u8_t)(pcb->dupacks + 1) > pcb->dupacks) { in tcp_receive() 1546 u8_t *opts, opt; in tcp_parseopt() 1551 opts = (u8_t *)tcphdr + TCP_HLEN; in tcp_parseopt()
|
| /lib/liblwip/src/core/ipv4/ |
| D | igmp.c | 127 PACK_STRUCT_FIELD(u8_t igmp_msgtype); 128 PACK_STRUCT_FIELD(u8_t igmp_maxresp); 141 static void igmp_start_timer(struct igmp_group *group, u8_t max_time); 142 static void igmp_delaying_member(struct igmp_group *group, u8_t maxresp); 144 static void igmp_send(struct igmp_group *group, u8_t type); 698 igmp_start_timer(struct igmp_group *group, u8_t max_time) in igmp_start_timer() 715 igmp_delaying_member(struct igmp_group *group, u8_t maxresp) in igmp_delaying_member() 762 igmp_send(struct igmp_group *group, u8_t type) in igmp_send()
|
| D | ip_frag.c | 161 u8_t clen; in ip_reass_free_complete_datagram() 483 u8_t clen; in ip_reass() 618 static u8_t buf[LWIP_MEM_ALIGN_SIZE(IP_FRAG_MAX_MTU + MEM_ALIGNMENT - 1)]; 735 poff += pbuf_copy_partial(p, (u8_t*)iphdr + IP_HLEN, cop, poff); in ip_frag() 769 p->payload = (u8_t *)p->payload + poff; in ip_frag()
|
| D | autoip.c | 103 htonl(AUTOIP_RANGE_START + ((u32_t)(((u8_t)(netif->hwaddr[4])) | \ 104 ((u32_t)((u8_t)(netif->hwaddr[5]))) << 8)))
|
| /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() 135 netconn_getaddr(struct netconn *conn, ip_addr_t *addr, u16_t *port, u8_t local) in netconn_getaddr() 241 netconn_listen_with_backlog(struct netconn *conn, u8_t backlog) in netconn_listen_with_backlog() 599 u8_t apiflags, size_t *bytes_written) in netconn_write_partly() 603 u8_t dontblock; in netconn_write_partly() 663 netconn_close_shutdown(struct netconn *conn, u8_t how) in netconn_close_shutdown() 702 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) in netconn_shutdown()
|
| D | sockets.c | 540 err = netconn_listen_with_backlog(sock->conn, (u8_t)backlog); in lwip_listen() 567 u8_t done = 0; in lwip_recvfrom() 648 pbuf_copy_partial(p, (u8_t*)mem + off, copylen, sock->lastoffset); in lwip_recvfrom() 758 u8_t write_flags; in lwip_send() 958 conn = netconn_new_with_proto_and_callback(NETCONN_RAW, (u8_t)protocol, event_callback); 1371 u8_t shut_rx = 0, shut_tx = 0; 1408 lwip_getaddrname(int s, struct sockaddr *name, socklen_t *namelen, u8_t local) 1542 if (*optlen < sizeof(u8_t)) { 1552 if (*optlen < sizeof(u8_t)) { 1772 *(u8_t*)optval = sock->conn->pcb.ip->ttl; [all …]
|
| D | netdb.c | 119 u8_t idx; in lwip_gethostbyname() 129 u8_t idx; in lwip_gethostbyname() 320 sa = (struct sockaddr_in*)((u8_t*)ai + sizeof(struct addrinfo)); in lwip_getaddrinfo()
|
| D | api_msg.c | 77 static u8_t 750 u8_t shut, shut_rx, shut_tx, close; 1011 u8_t non_blocking = netconn_is_nonblocking(msg->conn); 1213 u8_t write_finished = 0; 1215 u8_t dontblock = netconn_is_nonblocking(conn) || 1217 u8_t apiflags = conn->current_msg->msg.w.apiflags; 1242 dataptr = (u8_t*)conn->current_msg->msg.w.dataptr + conn->write_offset;
|
| /lib/liblwip/test/unit/tcp/ |
| D | test_tcp.c | 18 static u8_t test_tcp_timer; 293 static u8_t tx_data[TCP_WND*2]; 333 tx_data[i] = (u8_t)i; in START_TEST() 430 tx_data[i] = (u8_t)i; in START_TEST() 497 static void test_tcp_tx_full_window_lost(u8_t zero_window_probe_from_unsent) in test_tcp_tx_full_window_lost() 508 u8_t expected = 0xFE; in test_tcp_tx_full_window_lost() 511 u8_t d = (u8_t)i; in test_tcp_tx_full_window_lost() 621 u8_t sent; in test_tcp_tx_full_window_lost()
|
| D | tcp_helper.c | 43 u32_t seqno, u32_t ackno, u8_t headerflags, u16_t wnd) in tcp_create_segment_wnd() 107 u32_t seqno, u32_t ackno, u8_t headerflags) in tcp_create_segment() 119 u32_t ackno_offset, u8_t headerflags) in tcp_create_rx_segment() 131 u32_t seqno_offset, u32_t ackno_offset, u8_t headerflags, u16_t wnd) in tcp_create_rx_segment_wnd()
|
| /lib/liblwip/src/arch/ |
| D | sys_arch.c | 102 static struct sys_sem *sys_sem_new_internal(u8_t count); 196 u8_t first; in sys_mbox_trypost() 233 u8_t first; in sys_mbox_post() 350 sys_sem_new_internal(u8_t count) in sys_sem_new_internal() 364 sys_sem_new(struct sys_sem **sem, u8_t count) in sys_sem_new()
|
| /lib/liblwip/src/core/snmp/ |
| D | msg_out.c | 60 u8_t enable; 81 snmp_trap_dst_enable(u8_t dst_idx, u8_t enable) in snmp_trap_dst_enable() 95 snmp_trap_dst_ip_set(u8_t dst_idx, ip_addr_t *dst) in snmp_trap_dst_ip_set() 292 u8_t enable; in snmp_authfail_trap() 558 snmp_asn1_enc_raw(p, ofs, m_trap->thl.comlen, (u8_t *)&snmp_publiccommunity[0]); in snmp_trap_header_enc() 613 u8_t *raw_ptr; in snmp_varbind_list_enc() 655 raw_ptr = (u8_t*)vb->value; in snmp_varbind_list_enc()
|
| /lib/liblwip/src/include/arch/ |
| D | cc.h | 48 typedef unsigned char u8_t; typedef
|
| /lib/liblwip/src/include/ipv6/lwip/ |
| D | inet.h | 47 u8_t proto, u32_t proto_len);
|
| /lib/liblwip/src/netif/ppp/ |
| D | ppp_impl.h | 342 int sifvjcomp (int, int, u8_t, u8_t);
|