3890 Commits (f3b7bca3cf80ff6a2bc66f794bfc4e202cfd5e4e)
 

Author SHA1 Message Date
Dirk Ziegelmeier cc4f94f415 lowpan6: Fix incorrect array bounds check (found by Coverity) 10 years ago
Dirk Ziegelmeier 9885d5d9f5 Apply patch from Simon to fix buffer overflow handling tcp_in.c which was discovered by Coverity 10 years ago
Dirk Ziegelmeier 8e5663a32f Minor: Avoid ip_input() call indirection for when only IPv4 or IPv6 are enabled 10 years ago
Dirk Ziegelmeier 4bbfc3857a Implement dual-stack in SNMP for netconn API 10 years ago
Dirk Ziegelmeier 5404ce3c0a Implement support for UDP IP_ANY_TYPE in netconn API 10 years ago
Dirk Ziegelmeier 2289673a30 Implement support for IP_ANY_TYPE in SNMP 10 years ago
Dirk Ziegelmeier 6aed6e659f Rework DHCP PCB handling: Old code registered one UDP PCB per netif where DHCP was active and there was a special case in udp_input() for this. New implementation uses one PCB for all netifs and removes special case in udp_input(). 10 years ago
Dirk Ziegelmeier 42c92f80f1 Add compatibility macro for udp_new_ip6() 10 years ago
goldsimon fa16ee8dcb cleaned up includes a bit after IPv6 changes 10 years ago
Dirk Ziegelmeier 70f3e5ed05 Cleanup: Create new file ip.c and move dual-stack code from ipv4 and ipv6 folder in there 10 years ago
Dirk Ziegelmeier 2dc8f59bf4 Fix compile when PPPOE is enabled 10 years ago
Dirk Ziegelmeier d5778bad2f No need for dual-stack code in ip4.c and icmp.c -> use ip4 only versions 10 years ago
goldsimon 81c8121551 minor: fixed compiler warning "unary minus operator is applied to an unsigned expression" 10 years ago
goldsimon 97b7555119 bring back ETHARP_HWADDR_LEN (if anyone uses it) 10 years ago
Dirk Ziegelmeier a5214abd04 udp: udp_send and udp_send_chksum: Check for PCB NULL pointer and PCB must not be the new IP_ANY_TYPE, but a real IPv4 and IPv6 address 10 years ago
goldsimon bf8bcfafe2 revert accidentally committed comment from a649a3eb50 10 years ago
Joel Cunningham 8cb64698aa Allow backlog to be updated 10 years ago
sg 163d7f9791 added ethernet.c to Filelists.mk 10 years ago
sg a649a3eb50 dual-stack fix: moved common definitions/code for ethernet used by etharp and ethip6 to new files ethernet.h/.c 10 years ago
Joel Cunningham 2a8398dfb8 Fix bug in FIONREAD handling in LINUXMODE 10 years ago
Dirk Ziegelmeier fd891081c4 minor: Cleanups in raw/tcp/udp code by using macros and reducing #ifdefs 10 years ago
Dirk Ziegelmeier 953b7bdd59 Implement UDP dual-stack PCB support 10 years ago
sg 1dde3d6e56 Fixed bug #46524: "Device as dhcp server does not work after upgrade to lwip-1.4.1" 10 years ago
sg ec49b68b38 minor: udp_input/local_match: coding style, added comments 10 years ago
sg 68590c2b27 minor/coding style: lowpan6_opts.h: tabs->spaces, trim trailing spaces 10 years ago
Dirk Ziegelmeier ac4b089b18 udp.c: Further udp_input simplifications 10 years ago
Dirk Ziegelmeier 005c196ed8 udp.c: Simplify and cleanup input PCB matching 10 years ago
Dirk Ziegelmeier 3b5803ec9a sys.h: Avoid un #defined LWIP_COMPAT_MUTEX macro (usually #defined in arch/sys_arch.h) 10 years ago
Dirk Ziegelmeier fd4a109ffa lowpan6.c: Implement SNMP counters 10 years ago
Dirk Ziegelmeier 481d350bf3 lwip/stats.h: Add some comments to MIB2 variables to explain correct usage a bit 10 years ago
Dirk Ziegelmeier d121ea84d0 Add note about 6LoWPAN in src/netif/FILES 10 years ago
goldsimon a5ac41c203 lowpan6: fixed compiler warning when casting u16_t to u8_t 10 years ago
goldsimon e4457335b8 minor: tried to fix coding style in lowpan6.c 10 years ago
Dirk Ziegelmeier 680f8f31ab I don't know why I have a diff here (I guess line ending problems like in my last lowpan6.c commit)... 10 years ago
Dirk Ziegelmeier 6650eb4cd2 snmp_traps.c: Fix compile on Win32 - missing string.h include 10 years ago
Dirk Ziegelmeier 799fe7a5ba Fix shadowing warning in lowpan6.c - found by Erik Ekman's Travis CI 10 years ago
Dirk Ziegelmeier 9a4d7b9956 Use netif_input_fn typedef instead of creating a new one in tcpip.h 10 years ago
Dirk Ziegelmeier fe8d2ba72f Eliminate tcpip_pppos_input function 10 years ago
Dirk Ziegelmeier e90591bb78 Add note to CHANGELOG about 6LoWPAN 10 years ago
Dirk Ziegelmeier e2a3565971 Initial import of Ivan Delamer's 6LoWPAN implementation with slight modifications to allow compiling in IPv6 only mode 10 years ago
Dirk Ziegelmeier aeab047ede slipif: Fix compile when only IPv6 is enabled 10 years ago
Dirk Ziegelmeier 777e667f08 Add generic tcpip_inpkt function that can be called to make last changes really usable 10 years ago
Dirk Ziegelmeier fa6f068fd1 Eliminate TCPIP_MSG_INPKT_PPPOS message type. 10 years ago
Dirk Ziegelmeier 439ae629e0 Change TCPIP INPKT API message to take a function pointer. Allows integration of other protocols without extending lwIP core (e.g. 6LoWPAN) 10 years ago
Dirk Ziegelmeier 17fad79f71 Two compile fixes after eliminating isipv6 member in PCBs 10 years ago
Dirk Ziegelmeier d8531a2407 Cleanup NETCONNTYPE_ISIPV6 macro 10 years ago
Dirk Ziegelmeier c805843e64 Change signature of ip_output, ip_output_if, ip_output_if_src, ip_output_hinted, ip_route, ip_netif_get_local_ip, ip_route_get_local_ip and tcp_eff_send_mss not to take an isipv6 parameter. Use the IP version of the destination address instead. 10 years ago
Dirk Ziegelmeier 880f1008d6 Together with Simon: Eliminate last instances of isipv6 member in pcbs; 10 years ago
Dirk Ziegelmeier be9cd800b0 Review with Simon: Init TCP/UDP/RAW PCBs with correct IP types in _new functions to make my changes work correct 10 years ago
Dirk Ziegelmeier 0106cf7ae0 Review with Simon: Remove dead code (since 2003) 10 years ago