goldsimon
|
d80be7961c
|
use PCB_IS_IPV6(pcb) instead of pcb->isipv6 everywhere; fixed compilation with LWIP_IPV6==1 but LWIP_IGMP==0
|
2011-05-28 09:30:43 +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
|
92fcfd7a6f
|
Fixed two compilation errors with different opt.h settings
|
2011-05-26 14:47:28 +00:00 |
|
goldsimon
|
1b2b054139
|
Fixed bug #33337 (which is #32906 reappearing after adding IPv6 support)
|
2011-05-25 17:40:42 +00:00 |
|
goldsimon
|
853d1eac96
|
Fixed pointless conversion when checking TCP port range (bug #33398)
|
2011-05-25 17:22:56 +00:00 |
|
goldsimon
|
2ef29d6839
|
Use conversion defines instead of casting IP addresses
|
2011-05-25 17:22:13 +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
|
9546e65617
|
Removed autoip_init() since it does nothing; minor coding style changes
|
2011-05-21 16:01:19 +00:00 |
|
goldsimon
|
5852993243
|
Removed files of old IPv6 implementation
|
2011-05-17 19:56:08 +00:00 |
|
goldsimon
|
90a03a77ad
|
Added new files for IPv6
|
2011-05-17 19:54:40 +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
|
f3c1686a40
|
replaced tab with spaces
|
2011-05-16 18:45:51 +00:00 |
|
goldsimon
|
33a587d97e
|
Added a test for fast-rexmit
|
2011-05-14 15:26:43 +00:00 |
|
goldsimon
|
a444ec5111
|
patch #7449 allow tcpip callback from interrupt with static memory message
|
2011-05-14 12:23:10 +00:00 |
|
kieranm
|
5ead1bf5c8
|
Update version numbers for 1.4.1 development
|
2011-05-06 09:07:38 +00:00 |
|
kieranm
|
3a267586f4
|
Update CHANGELOG and version numbers for 1.4.0 release
|
2011-05-06 08:48:37 +00:00 |
|
goldsimon
|
52271e0366
|
Used upper case 'L' instead of lower case 'l' for long constant for better readability
|
2011-04-29 11:37:29 +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
|
80b344e9fc
|
Fixed printf-format error (bug #33079)
|
2011-04-21 05:15:45 +00:00 |
|
goldsimon
|
036cb26fa3
|
sys_arch_timeouts() is not needed any more.
|
2011-04-20 11:31:07 +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
|
791505ab6e
|
Fixed tcp unit tests after introducing ip_addr_p_t and letting tcp_input check for broadcasts by using current_iphdr_dest.
|
2011-03-30 18:50:00 +00:00 |
|
goldsimon
|
88e1719d8e
|
Fixed etharp unit test after changing struct etharp_hdr
|
2011-03-30 18:47:20 +00:00 |
|
goldsimon
|
0885555521
|
Fixed broken VLAN support.
|
2011-03-29 18:56:26 +00:00 |
|
goldsimon
|
36c1750b8f
|
ethernet_input: check for minimum packet length to prevent assertions from firing.
|
2011-03-29 07:55:16 +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
|
b5dd87b184
|
Fixed bug #32280 (ppp: a pbuf is freed twice)
|
2011-03-27 13:58:26 +00:00 |
|
goldsimon
|
b54c7bedfd
|
Fixed bug #32906: lwip_connect+lwip_send did not work for udp and raw pcbs with LWIP_TCPIP_CORE_LOCKING==1.
|
2011-03-27 13:36:32 +00:00 |
|
goldsimon
|
783404d8d4
|
Move tcp_pcb_lists to const section.
|
2011-03-27 13:04:16 +00:00 |
|
goldsimon
|
3bad9f013e
|
Fixed bug #32820 (Outgoing TCP connections created before route is present never times out) by starting retransmission timer before checking route.
|
2011-03-27 13:00:54 +00:00 |
|
goldsimon
|
4495516497
|
Removed 'dataptr' from 'struct tcp_seg' and calculate it in tcp_zero_window_probe (the only place where it was used).
|
2011-03-27 12:56:16 +00:00 |
|
goldsimon
|
3f849848a4
|
Fixed bug #32648 (PPP code crashes when terminating a link) by only calling sio_read_abort() if the file descriptor is valid.
|
2011-03-22 20:59:49 +00:00 |
|
goldsimon
|
7203680146
|
fixed bug #31748 (Calling non-blocking connect more than once can render a socket useless) since it mainly involves changing "FATAL" classification of error codes: ERR_USE and ERR_ISCONN just aren't fatal.
|
2011-03-14 21:21:26 +00:00 |
|
goldsimon
|
d793ed3b9b
|
fixed bug #32769 (ESHUTDOWN is linux-specific) by fixing err_to_errno_table (ERR_CLSD: ENOTCONN instead of ESHUTDOWN), ERR_ISCONN: use EALRADY instead of -1
|
2011-03-13 11:21:06 +00:00 |
|
goldsimon
|
c6de17d1e5
|
netconn_accept: return ERR_ABRT instead of ERR_CLSD if the connection has been aborted by err_tcp (since this is not a normal closing procedure).
|
2011-03-13 11:17:18 +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
|
4e3b2b9f6b
|
Fixed bug #32561 tcp_poll argument definition out-of-order in documentation
|
2011-02-21 19:26:57 +00:00 |
|
goldsimon
|
856ccb5bb7
|
Added missing U/UL modifiers to fix 16-bit-arch portability.
|
2011-02-18 13:31:28 +00:00 |
|
goldsimon
|
dbf5659cd9
|
Indentation changed
|
2011-02-18 13:30:35 +00:00 |
|
goldsimon
|
fee0c6afe9
|
Fixed constant not being 32 bit.
|
2011-02-17 17:03:12 +00:00 |
|
kieranm
|
fb7d3a159a
|
Update version for 1.4.0 rc2
|
2011-02-03 12:46:56 +00:00 |
|
goldsimon
|
dc6b4e65e0
|
Adde missing extern "C"
|
2011-01-25 11:35:48 +00:00 |
|
goldsimon
|
17d4ef4053
|
Added missing "extern "C" {"
|
2011-01-25 06:18:50 +00:00 |
|
goldsimon
|
03be8f88fe
|
Fixed bug #31741: lwip_select seems to have threading problems
|
2011-01-24 19:28:28 +00:00 |
|
goldsimon
|
effcb90fdf
|
Mreged back changes that were lost during the savannah hack 3 weeks ago (using the sources from http://git.infradead.org/users/dwmw2/lwip.git)
|
2010-12-20 18:03:51 +00:00 |
|
goldsimon
|
1bd06bee82
|
Added note about changed ARP_QUEUEING==0
|
2010-12-02 20:09:58 +00:00 |
|
goldsimon
|
92cdc1e33f
|
Fixed ERR_IS_FATAL so that ERR_WOULDBLOCK is not fatal.
|
2010-12-02 07:07:18 +00:00 |
|
goldsimon
|
377628216e
|
Fixed bug #31590: getsockopt(... SO_ERROR ...) gives EINPROGRESS after a successful nonblocking connection.
|
2010-11-22 20:55:57 +00:00 |
|
goldsimon
|
f7627929d5
|
Fixed bug #31722: IP packets sent with an AutoIP source addr must be sent link-local
|
2010-11-22 19:55:05 +00:00 |
|