5086 Commits (9e20fe2cfb01428e366e97fc0366cff9920ae921)
 

Author SHA1 Message Date
Joel Cunningham b90a54f989 bug #50476: initialize ssthresh to TCP_SND_BUF 9 years ago
Joel Cunningham fd9ac30062 Fix dual-stack build failure in lwip_sendmsg 9 years ago
Sylvain Rochet e16d10ade6 PPP: remove unused and confusing return values other than ERR_OK for ppp_connect and ppp_listen 9 years ago
goldsimon aff1935e40 arch.h: include <limits.h> if it exists (at least INT_MAX is used) 9 years ago
goldsimon c9efb7a72c added missing define for MSG_NOSIGNAL 9 years ago
goldsimon c797222407 lwip_sendmsg: implement EMSGSIZE checks 9 years ago
goldsimon c9d0192b4a lwip_sendmsg: small performance improvement: netbuf can be allocated on the stack as it is used internally only (see lwip_sendto) 9 years ago
goldsimon 270fdfff07 netconn_write_vectors_partly() watch out for overflow of data to send (must fit into INT_MAX for sockets) 9 years ago
goldsimon 4dd378b126 socket sendto: gracefully handle 'size' not fitting into an u16_t (return EMSGSIZE error) see task #14378 9 years ago
goldsimon 5c33efe430 minor: indentation fix 9 years ago
goldsimon 194803a3a7 netbuf: correctly reset netbuf checksum for LWIP_CHECKSUM_ON_COPY==1 9 years ago
goldsimon c6c693923e One more try to fix the build... 9 years ago
goldsimon 53f717338b sockets: fixed printf format (not reported by mingw port due to -Wno-format) 9 years ago
goldsimon b71d4477ea socket tcp performance tweak: handle window update (call into tcpipi_thread) only once per recv for multi-segment receives 9 years ago
goldsimon f0bc2fa968 netconn_tcp_recvd should take u32_t, not u16_t (as used in msg) 9 years ago
goldsimon f02119af62 lwip_recvfrom: fix tcp socket error handling 9 years ago
goldsimon 04bff63f49 sockets: netconn event callback is only used for select (nonblocking sockets are now implemented at netconn layer) -> add option LWIP_SOCKET_SELECT to reflect this 9 years ago
goldsimon c77a7fe824 lwip_recv_tcp: fix full-duplex: remove invalid calls to done_socket() 9 years ago
goldsimon 30be7b582e sockets: remove sock->lastoffset and free unused pbufs instead (using pbuf_free_header) 9 years ago
goldsimon 49414826af pbuf: added new function pbuf_free_header() to gradually hide bytes and free pbufs from the front of a pbuf chain 9 years ago
goldsimon c295717ce7 sockets: clean up all the if/else in lwip_recvfrom and use new nonblocking features in netconn API: I'm OK with code duplication if it gets more readable :-/ 9 years ago
goldsimon 1945582c10 netconn: added receive flag NETCONN_NOAUTORCVD and netconn_tcp_recvd() to delay rx window updates (e.g. when receiving more data as performance improvement) 9 years ago
goldsimon b86787c39c Improve code readability by moving tcp-specific functionality from netconn_recv_data() to new static function netconn_recv_data_tcp() since all tcp code paths are different anyway 9 years ago
Dirk Ziegelmeier e15e504217 Some minor SNMPv3 related cleanups 9 years ago
Joel Cunningham dd4ded3978 do_writemore: fix blocking bug 9 years ago
Dirk Ziegelmeier 02be2f8f42 Move snmpv3_dummy.* from main lwIP rep to contrib 9 years ago
Dirk Ziegelmeier 9719c52e62 SNMPv3: Missed two locations where the new enums can be used 9 years ago
Dirk Ziegelmeier c961ac70b6 Fixump snmp/snmpv3_dummy.h copyright header 9 years ago
Dirk Ziegelmeier 6f485cc870 snmp/snmpv3_dummy.c: Set default configuration in snmpv3_dummy_init() 9 years ago
Dirk Ziegelmeier 461f1fe1a9 More SNMPv3 cleanups: Create own header snmpv3_dummy.h and move functions in there 9 years ago
Dirk Ziegelmeier ecb3867803 SNMPv3: Rename tcpip_enginetime_timer to snmpv3_enginetime_timer 9 years ago
Dirk Ziegelmeier 927990d94e One enum icmp_te_type member is not in doxygen docs - fix it. 9 years ago
Joel Cunningham 2980f7cc58 Vectorize netconn_write for TCP 9 years ago
goldsimon 3feb748fee Simplify lwip_accept() and lwip_ioctl() by relying on nonblocking netconn functions instead of sock->rcvevent 9 years ago
goldsimon 5c3bb19923 added nonblocking accept/recv to netconn API (task #14396) (also added netconn_recv_udp_raw_netbuf_flags() and netconn_recv_tcp_pbuf_flags() to pass socket-like flags to nonblock for one call only) 9 years ago
Dirk Ziegelmeier 593b211d1b A few more SNMPv3 cleanups 9 years ago
goldsimon 1b3aaef525 lwip_sendmsg/tcp: prevent PSH until all iovecs are enqueued 9 years ago
Dirk Ziegelmeier 3fa3bf0570 Undo accidental activation of SNMPv3 code in my last commit 9 years ago
Dirk Ziegelmeier 0065cd915f Several Win32 compile fixes in SNMP code 9 years ago
Dirk Ziegelmeier 83de16678c SNMP: TABs -> spaces 9 years ago
goldsimon 05a595f745 httpd: LWIP_HTTPD_POST_MANUAL_WND: fixed double-free when httpd_post_data_recved is called nested from httpd_post_receive_data() (bug #50424) 9 years ago
goldsimon 5f0fbdcde9 fixed warning about potentially unused variable 'netif' after changing ip4/6_input_accept to return in, not netif* 9 years ago
Dirk Ziegelmeier ea41480232 Replace several C++ style comments by C-style 9 years ago
Dirk Ziegelmeier 4ef21e2597 Fix compile when SNMPv3 is disabled 9 years ago
Dirk Ziegelmeier 78cdbff1b3 Several compile fixes for Marco's patch 9 years ago
Dirk Ziegelmeier 576a8228c2 Add new files to Filelists.ml 9 years ago
Dirk Ziegelmeier fef7ce3c0d Some whitespace fixes to Marco's patches 9 years ago
Marco f0605a510f Modified the snmpv3_dummy implementation to be more functional. 9 years ago
Marco 3b8bb580e4 Add framework MIB and USM mib if SNMPv3 is enabled. 9 years ago
Marco 4b97f2bb8e Implemented usm mib. 9 years ago