goldsimon
|
5d13b5a2fb
|
fixed bug #37614 "Errors from ipX_output are not processed". Now tcp_output(_segment) checks for the return value of ipX_output and does not try to send more on error. A netif driver can call tcp_txnow() (from tcpip_thread!) to try to send again if TX buffers are available again.
|
2015-02-17 08:02:34 +01:00 |
|
goldsimon
|
e926a93568
|
tcp_kill_prio(): prefer nearly-closed connections (waiting for the last ACK only) over established connections when out of tcp pcbs
|
2015-01-20 12:45:26 +01:00 |
|
sg
|
28476e3b7b
|
Fixed bug #38315 tcp_eff_send_mss_impl() always subtract the difference in IPv6 header size
|
2015-01-18 14:08:11 +01:00 |
|
sg
|
69ee35c909
|
tcp_close_shutdown: remove invalid comment on linger: we cannot support linger for the raw API since linger implies blocking
|
2015-01-17 14:36:39 +01:00 |
|
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);
- Fixed implementation of SO_ACCEPTCONN to just look at the pcb state;
- cleaned up the SO/SOF defines (only 3 left a ip_pcb level);
|
2014-12-10 21:46:49 +01:00 |
|
Simon Goldschmidt
|
33237419c1
|
Parts of patch #8397 Typos corrected in comments and text outputs
|
2014-09-18 21:15:13 +02:00 |
|
Simon Goldschmidt
|
39caf630a9
|
fixed bug #42299 tcp_abort() leaves freed pcb on tcp_bound_pcbs list
|
2014-09-02 20:59:00 +02:00 |
|
Simon Goldschmidt
|
e7f3224091
|
again bug #26069: Documentation of tcp_connect() incorrectly describes handling of errors
|
2014-06-04 20:54:02 +02:00 |
|
Simon Goldschmidt
|
88a57dc98d
|
Fixed bug #36167 tcp server crash when client closes (maximum window)
|
2014-04-08 21:26:27 +02:00 |
|
Simon Goldschmidt
|
751deac9d1
|
Another fix to window scaling: support queueing more than 64 KByte in ooseq data
|
2014-02-12 21:34:19 +01:00 |
|
Simon Goldschmidt
|
d2a89b424b
|
patch #6537/#7858: TCP window scaling support (OOS queueing still needs special handling)
|
2014-02-06 22:34:06 +01:00 |
|
Simon Goldschmidt
|
91333c5d2f
|
fixed bug #39898 tcp_fasttmr() possible lock due to infinte queue process loop
|
2014-01-10 21:21:54 +01:00 |
|
Simon Goldschmidt
|
2fb5a71efd
|
patch #8030: fixed spelling of "received"
|
2013-06-19 22:23:05 +02:00 |
|
James Smith
|
97b8abf16c
|
Fix bug #36857: tcp_listen_dual_with_backlog() only works with ANY
address
Change-Id: I092a4c9978d88040214fc44a4c4b353be618d76c
|
2012-07-24 10:34:09 -06:00 |
|
goldsimon
|
dd245c63d7
|
tcp_abort/tcp_abandon: don't send RST if pcb->state is CLOSED
|
2012-03-25 17:19:46 +02:00 |
|
goldsimon
|
9a95c2ff08
|
fixed bug #35435: No pcb state check before adding it to time-wait queue while closing
|
2012-02-11 18:15:17 +01:00 |
|
goldsimon
|
13075460ea
|
fixed bug #35305: pcb may be freed too early on shutdown(WR)
|
2012-01-22 11:18:36 +01:00 |
|
goldsimon
|
4c3dfb92b7
|
fixed bug #34636: FIN_WAIT_2 - Incorrect shutdown of TCP pcb: don't let PCBs time out from FIN_WAIT_2 if the RX side wasn't close (by either calling tcp_close or tcp_shutdown(RDWR))
|
2012-01-21 18:05:15 +01:00 |
|
goldsimon
|
c8647c0396
|
implemented API functions to access so_options of IP pcbs (UDP, TCP, RAW) (fixes bug #35061)
|
2011-12-17 22:12:01 +01:00 |
|
goldsimon
|
dd8729063c
|
fixed bug #31177: tcp timers can corrupt tcp_active_pcbs in some cases
|
2011-11-25 18:36:52 +01:00 |
|
goldsimon
|
0fb07ba328
|
- moved processing of refused_data to an own function (used from tcp_fasttmr and tcp_input);
- improved readability of tcp_slowtmr by using defines to access keepalive variables
|
2011-10-23 18:10:46 +02:00 |
|
Simon Goldschmidt
|
98274d2145
|
Reverted invalid fix for invalid bug #34360 done yesterday...
|
2011-09-23 19:26:29 +02:00 |
|
Simon Goldschmidt
|
1d125f55ba
|
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/lwip
|
2011-09-23 19:16:01 +02:00 |
|
Simon Goldschmidt
|
918470affc
|
fixed bug #33871: rejecting TCP_EVENT_RECV() for the last packet including FIN can lose data
|
2011-09-23 19:14:17 +02:00 |
|
Simon Goldschmidt
|
797f26e45b
|
fixed bug #34360 tcp_shutdown: RST on unacked is not send when shutting down both rx AND tx
|
2011-09-22 21:38:56 +02:00 |
|
Simon Goldschmidt
|
112158b056
|
Added a config option to randomize initial local TCP/UDP ports (so that different port ranges are used after a reboot; bug #33818; this one added tcp_init/udp_init functions again);
fixed a possible endless loop in tcp_new_port() if the number of active PCBs exceeds the number of available ports;
|
2011-09-11 12:44:01 +02:00 |
|
goldsimon
|
6a4c30fe5d
|
fixed bug #31723 (tcp_kill_prio() kills pcbs with the same prio) by updating its documentation only.
|
2011-06-26 17:37:09 +00:00 |
|
goldsimon
|
4444db2990
|
Added some more asserts to check that pcb->state != LISTEN
|
2011-06-26 17:07:13 +00:00 |
|
goldsimon
|
2aec3a9789
|
use PCB_IS_IPV6(pcb) instead of pcb->isipv6 everywhere
|
2011-05-28 09:28:18 +00:00 |
|
goldsimon
|
ccd7dbe0e4
|
Added ipX versions for routing
|
2011-05-26 15:46:44 +00:00 |
|
goldsimon
|
853d1eac96
|
Fixed pointless conversion when checking TCP port range (bug #33398)
|
2011-05-25 17:22:56 +00:00 |
|
goldsimon
|
6865806b55
|
Combined IPv4 and IPv6 code where possible, added defines to access IPv4/IPv6 in non-IP code so that the code is more readable.
|
2011-05-25 17:16:35 +00:00 |
|
goldsimon
|
4bfbe7ebeb
|
... and finally, we got a first working version of a dual-stack lwIP runnin IPv4 and IPv6 in parallel - big thanks to Ivan Delamer! (this is work in progress, so please beware, test a lot and report problems!)
|
2011-05-17 19:35:14 +00:00 |
|
goldsimon
|
e4739da961
|
Fixed overflow in tcp_new_port() after changing port range to IANA "Dynamic and/or Private Ports" range
|
2011-04-29 11:23:04 +00:00 |
|
goldsimon
|
33d6dcec5b
|
Fixed bug #33048 (Bad range for IP source port numbers) by using ports in the IANA private/dynamic range (49152 through 65535).
|
2011-04-13 17:52:00 +00:00 |
|
goldsimon
|
11b1c9f19f
|
Fixed bug #32926 (TCP_RMV(&tcp_bound_pcbs) is called on unbound tcp pcbs) by checking if the pcb was bound (local_port != 0).
|
2011-03-27 17:12:26 +00:00 |
|
goldsimon
|
783404d8d4
|
Move tcp_pcb_lists to const section.
|
2011-03-27 13:04:16 +00:00 |
|
goldsimon
|
5b084f4b95
|
tcp_bind: return ERR_VAL instead of ERR_ISCONN when trying to bind with state!=CLOSED; fixed a typo
|
2011-03-13 11:15:32 +00:00 |
|
goldsimon
|
f418782c2c
|
tcp_slowtmr(): change the scope of 'pcb2' to reflect its block-only usage.
|
2010-11-21 10:41:27 +00:00 |
|
goldsimon
|
4cc36b2284
|
Fixed bug #30728: tcp_new_port() did not check listen pcbs
|
2010-08-10 20:15:31 +00:00 |
|
goldsimon
|
cd22a8d851
|
Fixed bug #30565 (tcp_connect() check bound list): that check did no harm but never did anything
|
2010-07-28 16:48:51 +00:00 |
|
goldsimon
|
7f7df4ae19
|
Fixed bug #30447: tcp.c:tcp_bind() - suspicious nested #if
|
2010-07-28 16:44:59 +00:00 |
|
goldsimon
|
194a85387b
|
patch #7239: make tcp_state_str pointers constant
|
2010-07-12 09:49:00 +00:00 |
|
goldsimon
|
874d1641df
|
Fix compilation for LWIP_EVENT_API==1 (unused args)
|
2010-05-15 18:10:55 +00:00 |
|
goldsimon
|
7e5b0a9eb6
|
SO_REUSE: tcp_listen/tcp_connect: make sure that the 5-tuple is unique
|
2010-05-15 16:44:09 +00:00 |
|
goldsimon
|
d0348e0c60
|
task #6995: Implement SO_REUSEADDR (correctly)
|
2010-05-12 22:29:58 +00:00 |
|
goldsimon
|
597764e35b
|
Minor: source code layout
|
2010-05-10 14:02:52 +00:00 |
|
goldsimon
|
49e8e28cf6
|
Check that tcp_abort/tcp_abandon isn't called for listen-pcbs
|
2010-04-21 19:55:14 +00:00 |
|
goldsimon
|
6fb248c9e0
|
task #10088: Fixed a bug in RST-on-close-when-not-all-data-acked implementation (plus removed some unnecessary casts)
|
2010-03-22 12:32:05 +00:00 |
|
goldsimon
|
124ca0fed2
|
tcp_listen() did not copy the pcb's prio
|
2010-03-22 10:06:49 +00:00 |
|