Macros | |
#define | ERR_ABRT -11 /* Connection aborted. */ |
#define | ERR_ARG -14 /* Illegal argument. */ |
#define | ERR_BUF -2 /* Buffer error. */ |
#define | ERR_CLSD -13 /* Connection closed. */ |
#define | ERR_CONN -10 /* Not connected. */ |
#define | ERR_IF -15 /* Low-level netif error */ |
#define | ERR_INPROGRESS -5 /* Operation in progress */ |
#define | ERR_IS_FATAL(e) ((e) < ERR_ISCONN) |
#define | ERR_IS_FATAL_LISTENCONNECT(e) ((e) < ERR_CONN) |
#define | ERR_ISCONN -9 /* Already connected. */ |
#define | ERR_MEM -1 /* Out of memory error. */ |
#define | ERR_OK 0 /* No error, everything OK. */ |
#define | ERR_RST -12 /* Connection reset. */ |
#define | ERR_RTE -4 /* Routing problem. */ |
#define | ERR_TIMEOUT -3 /* Timeout. */ |
#define | ERR_USE -8 /* Address in use. */ |
#define | ERR_VAL -6 /* Illegal value. */ |
#define | ERR_WOULDBLOCK -7 /* Operation would block. */ |
#define | lwip_strerr(x) "" |
Typedefs | |
typedef s8_t | err_t |
Define LWIP_ERR_T in cc.h if you want to use a different type for your platform (must be signed). More... | |
#define ERR_ABRT -11 /* Connection aborted. */ |
Referenced by netconn_accept(), tcp_abandon(), tcp_accept_null(), tcp_input(), tcp_listen_input(), tcp_process(), tcp_process_refused_data(), and tcp_slowtmr().
#define ERR_ARG -14 /* Illegal argument. */ |
Referenced by dhcp_create_msg(), dhcp_release(), dhcp_start(), dns_gethostbyname(), etharp_query(), etharp_update_arp_entry(), lwip_netconn_do_listen(), mld6_free_group(), nd6_queue_packet(), netbuf_data(), netbuf_ref(), netconn_accept(), netconn_bind(), netconn_close_shutdown(), netconn_connect(), netconn_disconnect(), netconn_getaddr(), netconn_gethostbyname(), netconn_join_leave_group(), netconn_listen_with_backlog(), netconn_recv(), netconn_recv_data(), netconn_recv_tcp_pbuf(), netconn_send(), netconn_write_partly(), pbuf_copy(), pbuf_take(), pbuf_take_partial(), and tcp_write().
#define ERR_BUF -2 /* Buffer error. */ |
#define ERR_CLSD -13 /* Connection closed. */ |
Referenced by lwip_netconn_do_connect(), netconn_recv_data(), and tcp_input().
#define ERR_CONN -10 /* Not connected. */ |
#define ERR_IF -15 /* Low-level netif error */ |
Referenced by netif_null_output_ip6().
#define ERR_INPROGRESS -5 /* Operation in progress */ |
#define ERR_IS_FATAL | ( | e | ) | ((e) < ERR_ISCONN) |
#define ERR_IS_FATAL_LISTENCONNECT | ( | e | ) | ((e) < ERR_CONN) |
Referenced by lwip_netconn_do_listen().
#define ERR_ISCONN -9 /* Already connected. */ |
Referenced by lwip_netconn_do_connect(), and tcp_connect().
#define ERR_MEM -1 /* Out of memory error. */ |
Referenced by accept_function(), autoip_start(), dhcp_create_msg(), dhcp_start(), dns_enqueue(), dns_send(), etharp_find_entry(), etharp_query(), etharp_raw(), ethip6_output(), ip_frag(), lwip_netconn_do_listen(), lwip_netconn_do_writemore(), mld6_joingroup(), nd6_get_next_hop_entry(), nd6_queue_packet(), netbuf_ref(), netconn_recv(), pbuf_take_at(), pcb_new(), raw_sendto(), recv_tcp(), sys_arch_mbox_fetch(), sys_arch_sem_wait(), sys_mbox_new(), sys_mbox_trypost(), sys_sem_new(), tcp_enqueue_flags(), tcp_listen_input(), tcp_write(), tcp_write_checks(), tcpip_callback_with_block(), tcpip_input(), tcpip_timeout(), and tcpip_untimeout().
#define ERR_OK 0 /* No error, everything OK. */ |
Referenced by accept_function(), ap_task(), autoip_bind(), autoip_start(), autoip_stop(), dhcp_check(), dhcp_create_msg(), dhcp_decline(), dhcp_discover(), dhcp_inform(), dhcp_parse_reply(), dhcp_rebind(), dhcp_reboot(), dhcp_recv(), dhcp_release(), dhcp_renew(), dhcp_select(), dhcp_start(), dns_alloc_random_port(), dns_check_entry(), dns_gethostbyname(), etharp_output_to_arp_index(), etharp_query(), etharp_raw(), etharp_tmr(), etharp_update_arp_entry(), ethernet_input(), http_request(), icmp6_input(), icmp_input(), ip6_input(), ip6_options_add_hbh_ra(), ip_frag(), ip_input(), lwip_dhcp_server_fn(), lwip_netconn_do_close_internal(), lwip_netconn_do_connect(), lwip_netconn_do_connected(), lwip_netconn_do_delconn(), lwip_netconn_do_disconnect(), lwip_netconn_do_dns_found(), lwip_netconn_do_getaddr(), lwip_netconn_do_listen(), lwip_netconn_do_newconn(), lwip_netconn_do_recv(), lwip_netconn_do_write(), lwip_netconn_do_writemore(), mld6_free_group(), mld6_joingroup(), mld6_leavegroup(), mld6_stop(), nd6_queue_packet(), netbuf_data(), netbuf_ref(), netconn_accept(), netconn_alloc(), netconn_delete(), netconn_gethostbyname(), netconn_new_with_proto_and_callback(), netconn_recv(), netconn_recv_data(), netconn_write_partly(), netif_add(), pbuf_coalesce(), pbuf_copy(), pbuf_take(), pbuf_take_at(), pbuf_take_partial(), pbuf_write16be(), pbuf_write32be(), pbuf_write32le(), pbuf_write8(), poll_tcp(), raw_bind(), raw_connect(), recv_raw(), recv_tcp(), recv_udp(), sent_tcp(), sta_task(), sys_mbox_new(), sys_mbox_trypost(), sys_msleep(), sys_sem_new(), tcp_bind(), tcp_close_shutdown(), tcp_connect(), tcp_enqueue_flags(), tcp_input(), tcp_listen_input(), tcp_output(), tcp_process(), tcp_process_refused_data(), tcp_recv_null(), tcp_send_empty_ack(), tcp_send_fin(), tcp_shutdown(), tcp_slowtmr(), tcp_timewait_input(), tcp_write(), tcp_write_checks(), tcpip_callback_with_block(), tcpip_init(), tcpip_input(), tcpip_timeout(), tcpip_untimeout(), udp_bind(), udp_connect(), udp_input(), wilc_netif_init(), wilc_netif_rx_callback(), and wilc_netif_tx().
#define ERR_RST -12 /* Connection reset. */ |
Referenced by tcp_input(), and tcp_process().
#define ERR_RTE -4 /* Routing problem. */ |
Referenced by etharp_output(), etharp_update_arp_entry(), ip6_output(), ip6_output_if(), ip_output(), nd6_get_next_hop_entry(), raw_sendto(), tcp_connect(), and udp_connect().
#define ERR_TIMEOUT -3 /* Timeout. */ |
#define ERR_USE -8 /* Address in use. */ |
Referenced by dns_alloc_random_port(), tcp_bind(), tcp_connect(), and udp_bind().
#define ERR_VAL -6 /* Illegal value. */ |
Referenced by accept_function(), dhcp_create_msg(), dhcp_parse_reply(), lwip_netconn_do_bind(), lwip_netconn_do_connect(), lwip_netconn_do_connected(), lwip_netconn_do_disconnect(), lwip_netconn_do_dns_found(), lwip_netconn_do_join_leave_group(), lwip_netconn_do_listen(), lwip_netconn_do_write(), mld6_joingroup(), mld6_leavegroup(), netconn_sendto(), netconn_write_partly(), pbuf_copy(), pcb_new(), raw_sendto(), recv_tcp(), tcp_bind(), tcp_connect(), tcpip_apimsg(), tcpip_callback_with_block(), tcpip_input(), tcpip_timeout(), tcpip_trycallback(), and tcpip_untimeout().
#define ERR_WOULDBLOCK -7 /* Operation would block. */ |
Referenced by lwip_netconn_do_writemore().
#define lwip_strerr | ( | x | ) | "" |
Referenced by dns_check_entry().