goldsimon
|
dc6b4e65e0
|
Adde missing extern "C"
|
15 years ago |
goldsimon
|
17d4ef4053
|
Added missing "extern "C" {"
|
15 years ago |
goldsimon
|
03be8f88fe
|
Fixed bug #31741: lwip_select seems to have threading problems
|
15 years ago |
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)
|
16 years ago |
goldsimon
|
1bd06bee82
|
Added note about changed ARP_QUEUEING==0
|
16 years ago |
goldsimon
|
92cdc1e33f
|
Fixed ERR_IS_FATAL so that ERR_WOULDBLOCK is not fatal.
|
16 years ago |
goldsimon
|
377628216e
|
Fixed bug #31590: getsockopt(... SO_ERROR ...) gives EINPROGRESS after a successful nonblocking connection.
|
16 years ago |
goldsimon
|
f7627929d5
|
Fixed bug #31722: IP packets sent with an AutoIP source addr must be sent link-local
|
16 years ago |
goldsimon
|
b49cf5e7a2
|
patch #7328: Autoip: ETHADDR16_COPY can be used
|
16 years ago |
goldsimon
|
231a6cecb4
|
patch #7329: tcp_timer_needed prototype was ifdef'ed out for LWIP_TIMERS==0
|
16 years ago |
goldsimon
|
32f02325f9
|
Added a function to deallocate the struct dhcp from a netif (fixes bug #31525).
|
16 years ago |
goldsimon
|
f418782c2c
|
tcp_slowtmr(): change the scope of 'pcb2' to reflect its block-only usage.
|
16 years ago |
goldsimon
|
e52730d1fb
|
Fixed bug #31170: lwip_setsockopt() does not set socket number
|
16 years ago |
goldsimon
|
d2679e58a6
|
Fixed bug #31304: Changed SHUT_RD, SHUT_WR and SHUT_RDWR to resemble other stacks.
|
16 years ago |
goldsimon
|
e3817cd549
|
Fixed bug #31535: TCP_SND_QUEUELEN must be at least 2 or else no-copy TCP writes will never succeed.
|
16 years ago |
goldsimon
|
4ace50a7d7
|
Fix alignment checking of tcphdr: check for MEM_ALIGNMENT, not for 4
|
16 years ago |
goldsimon
|
fa092c47c8
|
Fixed bug #31701: Error return value from dns_gethostbyname() does not match documentation: return ERR_ARG instead of ERR_VAL if not initialized or wrong argument.
|
16 years ago |
goldsimon
|
704d90f693
|
Fixed bug #31385: sizeof(struct sockaddr) is 30 but should be 16
|
16 years ago |
goldsimon
|
93dc36e091
|
Once again fixed #30038: DHCP/AutoIP cooperation failed when replugging the network cable after an AutoIP address was assigned.
|
16 years ago |
goldsimon
|
4cc36b2284
|
Fixed bug #30728: tcp_new_port() did not check listen pcbs
|
16 years ago |
goldsimon
|
aaa8d2795e
|
Don't chain empty pbufs when sending them (fixes bug #30625)
|
16 years ago |
goldsimon
|
229137cad1
|
Applied patch #7264 (PPP protocols are rejected incorrectly on big endian architectures)
|
16 years ago |
goldsimon
|
d73262a0e5
|
Fixed compilation with TCP or UDP disabled.
|
16 years ago |
goldsimon
|
cd22a8d851
|
Fixed bug #30565 (tcp_connect() check bound list): that check did no harm but never did anything
|
16 years ago |
goldsimon
|
7f7df4ae19
|
Fixed bug #30447: tcp.c:tcp_bind() - suspicious nested #if
|
16 years ago |
goldsimon
|
3c5723e49d
|
Fixed invalid fix for bug #30402 (CHECKSUM_GEN_IP_INLINE does not add IP options)
|
16 years ago |
kieranm
|
960fb14bf5
|
Update release number for 1.4.0 release candidate 1
|
16 years ago |
kieranm
|
21e17f649a
|
Fixed SNMP ASN constant defines to not use ! operator
|
16 years ago |
goldsimon
|
9782c40d21
|
fixed the change not about tcp_close chang (bug #30444)
|
16 years ago |
goldsimon
|
04beab4f7d
|
IP_MULTICAST_LOOP shall be disabled by default
|
16 years ago |
goldsimon
|
194a85387b
|
patch #7239: make tcp_state_str pointers constant
|
16 years ago |
goldsimon
|
a99219ad1f
|
added missing casts
|
16 years ago |
goldsimon
|
691410ba18
|
task #10495: Added support for IP_MULTICAST_LOOP at socket- and raw-API level.
|
16 years ago |
goldsimon
|
714a43b18c
|
Fixed bug #30402: CHECKSUM_GEN_IP_INLINE does not add IP options
|
16 years ago |
goldsimon
|
9f457d3331
|
Updated to current CHANGELOG
|
16 years ago |
goldsimon
|
60a456f757
|
Added ip_addr_netmask_valid() to check if a netmask is valid (starting with ones, then only zeros)
|
16 years ago |
goldsimon
|
2b355d6b34
|
Added some helper functions to find strings in chained pbufs
|
16 years ago |
goldsimon
|
48be546357
|
fixed bug #30300 (shutdown parameter was not initialized in netconn_delete)
|
16 years ago |
goldsimon
|
0f74a57267
|
Re-enabled timer logging if LWIP_DEBUG_TIMERNAMES!=0 (without function pointers, only function names), changed parameter names from 'h' to 'handler'
|
16 years ago |
kieranm
|
272270c7f4
|
Remove unportable printing of C function pointers
|
16 years ago |
kieranm
|
e2f014f457
|
cleanup: fix minor build failures on unix
|
16 years ago |
goldsimon
|
1fba33628d
|
Fixed compilation error due to unexpected include order
|
16 years ago |
goldsimon
|
7d604a23f0
|
From patch #7221: added flag NO_SYS_NO_TIMERS to drop timer support for NO_SYS==1 for easier upgrading
|
16 years ago |
goldsimon
|
6929a786aa
|
Fixed bug #10088: Correctly implemented shutdown at socket level.
|
16 years ago |
goldsimon
|
f61b80ca6a
|
Fixed bug #29361 (ip_frag has problems with zero-copy DMA MACs) by adding custom pbufs and implementing custom pbufs that reference other (original) pbufs. Additionally set IP_FRAG_USES_STATIC_BUF=0 as default to be on the safe side.
|
16 years ago |
goldsimon
|
1aba9f031d
|
nicer code for the last fix
|
16 years ago |
goldsimon
|
2ffcc52f03
|
Fixed bug #30159: WomnIP_ACCEPT_LINK_LAYER_ADDRESSING
|
16 years ago |
goldsimon
|
72518a0d6e
|
fixed typos that MSVS did not complain about
|
16 years ago |
goldsimon
|
1242575f0f
|
Added an optional define (LWIP_IP_ACCEPT_UDP_PORT) that can allow link-layer-addressed UDP traffic to be received while a netif is down (just like DHCP during configuration)
|
16 years ago |
goldsimon
|
6ccc2ef804
|
Removed leading underscore from struct name, added a comment
|
16 years ago |