2902 Commits (ee833ea5941fc4ff9b5b7f1bc515ac3b68d3a8ea)
 

Author SHA1 Message Date
sg ee833ea594 changed comment in struct linger 11 years ago
goldsimon 338feef70e memp: also export memp_sizes[] if MEMP_USE_CUSTOM_POOLS==1 11 years ago
sg ec68aaf43b fixed that SHUT_RD followed by SHUT_WR was different to SHUT_RDWR, fixed return value of lwip_netconn_do_close on unconnected netconns 11 years ago
goldsimon 24df78bcbc fixed that lwip_netconn_do_delconn() did not set msg->err on success (just introduced that bug this weekend...) 11 years ago
goldsimon e926a93568 tcp_kill_prio(): prefer nearly-closed connections (waiting for the last ACK only) over established connections when out of tcp pcbs 11 years ago
sg 28476e3b7b Fixed bug #38315 tcp_eff_send_mss_impl() always subtract the difference in IPv6 header size 11 years ago
sg 05aa0ad114 netconn_delete(): check for errors returned by lwip_netconn_do_delconn() and don't call netconn_free() on error 11 years ago
sg 5ceaed291f fixed bug #43361 select() crashes with stale FDs 11 years ago
sg 48934414b2 patch #8479 Fixed a visibility scope that caused a compile error in some configurations (by Constantine <nongnusucks>) 11 years ago
sg c1804810d8 allow enabling socket API without (public) netconn API - netconn API is still used by sockets, but keeping it private (static) should allow better compiler optimizations 11 years ago
sg 69ee35c909 tcp_close_shutdown: remove invalid comment on linger: we cannot support linger for the raw API since linger implies blocking 11 years ago
sg 5d2e93e5f0 fixed bug #40788 "lwip_setsockopt_internal() crashes" by rewriting set/getsockopt functions to combine checks with the actual code and add more NULL checks; this also fixes that CORE_LOCKING used message passing for set/getsockopt. 11 years ago
goldsimon 1cbd2121e2 Allow to overrid the check for p->ref==1 in TX packets (there *are* netif drivers that can handle this) 11 years ago
goldsimon c0d9e3231b Merge branch 'master' of git.sv.gnu.org:/srv/git/lwip 11 years ago
goldsimon 2775fb5a45 fixed bug #20506 "Initial congestion window is very small" again by implementing the calculation formula from RFC3390 11 years ago
Sylvain Rochet 6ca8bc4037 inet_checksum: fixed prototype of lwip_standard_chksum() when LWIP_CHKSUM_ALGORITHM == 1 11 years ago
Sylvain Rochet 5dd6b1effc PPP, updated pppd followup 11 years ago
Sylvain Rochet 369e9fbf08 PPP, from PPPD upstream, Eliminate some unnecessary ifdefs 11 years ago
Sylvain Rochet e39d012312 PPP, from PPPD upstream, separate IPv6 handling for sifup/sifdown 11 years ago
Sylvain Rochet 7d077a2260 PPP,SLIP include lwip/sio.h after lwip/sys.h to prevent functions prototype collision 11 years ago
Sylvain Rochet b30faa577d PPP, moved ppp_init() from public API (ppp.h) to private API (ppp_impl.h) 11 years ago
Sylvain Rochet 91356d2d03 PPPAPI, added const modifier on auth strings 11 years ago
Sylvain Rochet 61f0231ce0 PPP, fixed more compiler warnings 11 years ago
Sylvain Rochet 482a18e6de PPP, added const modifier on auth strings 11 years ago
Sylvain Rochet 382ddac1a1 CORE: fixed missing prototype for pbuf_header_impl() function 11 years ago
Sylvain Rochet 2b3e020152 PPP, fixed some compiler warnings 11 years ago
goldsimon 01391f0234 etharp: fixed casting 'ctime' from u16_t to u8_t in local variables (introduced when fixing bug #34682) 11 years ago
goldsimon 32c6f96000 prevent dhcp from starting when netif link is down (only when LWIP_DHCP_CHECK_LINK_UP==1, which is disabled by default for compatibility reasons) 11 years ago
goldsimon a883fe7b8e sockets.c: fixed assert check after changing type of sock->select_waiting to unsigned 11 years ago
goldsimon 5d74d97fe1 TCP_OVERSIZE: make segment size allocated by TCP_OVERSIZE overridable for tests 11 years ago
goldsimon db4844e3f0 fixed bug #43840 Checksum error for TCP_CHECKSUM_ON_COPY==1 for no-copy data with odd length 11 years ago
sg 7ca4fd817e - fixed bug #43797 set/getsockopt: SO_SNDTIMEO/SO_RCVTIMEO take int as option but should take timeval (LWIP_SO_SNDRCVTIMEO_STANDARD==0 can be used to revert to the old 'winsock' style behaviour); 11 years ago
sg 8e13bcd43d fixed indentation 11 years ago
sg cacdbb5262 added option LWIP_NETCONN_SEM_PER_THREAD to use a semaphore per thread instead of using one per netconn and per select call 11 years ago
goldsimon 35729f0870 Merge branch 'master' of git.sv.gnu.org:/srv/git/lwip 11 years ago
goldsimon 0ff98eb2f5 mem: added an MEMP_OVERFLOW_CHECK implementation for MEM_USE_POOLS; added another unit test 11 years ago
goldsimon dbe33783c9 stats: place 'err' in stats_mem more at the front to better see it in debugger overview window 11 years ago
sg f38352f1af fixed bug #43596 IGMP queries from 0.0.0.0 are discarded 11 years ago
goldsimon 1bf2e313f6 sockets.c: fixed using unsigned constant 'FIONBIO' in switch on (signed) long 11 years ago
goldsimon ca26fd17a7 fixed bug #43778: IPv6 header version not set on 16-bit platform (macro IP6H_VTCFL_SET()) 11 years ago
goldsimon 4085a3fad4 task #11472 Support PBUF_REF for RX (IPv6 and IPv4/v6 reassembly might not work yet) 11 years ago
chrysn 36f470383b use u32_t instead of u_int32_t 12 years ago
Sylvain Rochet 52dc9ef418 slightly improved compiler warning fixes 12 years ago
goldsimon bada7e0f92 mem.h: fixed constants to be unsinged to fix compiler warning 12 years ago
goldsimon ec93b03d8d Fixed multiple smaller compiler warnings 12 years ago
goldsimon a5e748de84 CHANGELOG: fixed date 12 years ago
goldsimon 2809405164 lwip_socket_init() is not needed any more -> compatibility define 12 years ago
goldsimon 79ecf2edb7 SNMP: added missing casts to int for printf arguments 12 years ago
Sylvain Rochet c2ebf5544b fixed cosmetic bug #43499: wrong argument order in src/include/netif/etharp.h defines 12 years ago
sg d6fbe2a5ad fixed bugs #41495 Possible threading issue in select() and #43278 12 years ago