goldsimon
|
f93b8fe377
|
pbuf_copy(): removed copy & paste error which did not copy pbuf chains correctly
|
2007-06-14 17:40:39 +00:00 |
|
goldsimon
|
978c68dcf8
|
pbuf_copy: chained pbufs were not copied correctly because of wrong packet-queue-check
|
2007-06-14 07:22:43 +00:00 |
|
goldsimon
|
c0925d2d04
|
minor fix in assertion text
|
2007-06-14 07:21:55 +00:00 |
|
goldsimon
|
15e8208457
|
pcb_new sets conn->err if protocol is not implemented -> netconn_new_..() does not allocate a new connection for unsupported protocols.
|
2007-06-13 19:00:21 +00:00 |
|
fbernon
|
d8fe18c28e
|
api_lib.c: change return expression in netconn_addr and netconn_peer, because conn->err was reset to ERR_OK without any reasons (and error was lost)...
|
2007-06-13 18:08:49 +00:00 |
|
fbernon
|
9ee85fb1b6
|
debug.h, api_msg.c: change LWIP_ERROR to use it to check errors like invalid pointers or parameters, and let the possibility to redefined it in cc.h. Use this macro to check "conn" parameter in api_msg.c functions (some others change will be done...).
|
2007-06-13 18:00:54 +00:00 |
|
fbernon
|
bdbc96f453
|
opt.h, mem.h, mem.c, memp.c, pbuf.c, ip_frag.c, vj.c: Fix bug #20162. Rename MEM_ALIGN in LWIP_MEM_ALIGN and MEM_ALIGN_SIZE in LWIP_MEM_ALIGN_SIZE to avoid some macro names collision with some OS macros.
|
2007-06-13 17:17:26 +00:00 |
|
fbernon
|
5f7831b3c8
|
Minor fix (comment is not at the good place)
|
2007-06-13 09:04:03 +00:00 |
|
goldsimon
|
6336279ce0
|
In udp_input, for UDP Lite, chksum_len_tx was used instead of chksum_len_rx
|
2007-06-12 07:03:32 +00:00 |
|
fbernon
|
ab4b59afb9
|
Partial fix for bug# 20147: "getsockopt() with SO_ERROR option" 'socket layer error is not updated if no operation on netconn).
|
2007-06-11 20:16:38 +00:00 |
|
goldsimon
|
046a270156
|
Added UDP lite support for sockets
|
2007-06-11 18:43:16 +00:00 |
|
goldsimon
|
2f293d53ba
|
UDP Lite: corrected the use of chksum_len (based on RFC3828: if it's 0, create checksum over the complete packet. On RX, if it's < 8 (and not 0), discard the packet. Also removed the duplicate 'udphdr->chksum = 0' for both UDP & UDP Lite.
|
2007-06-11 18:03:57 +00:00 |
|
fbernon
|
1d7caed340
|
tcp_out.c: Fix for bug #20075 : "A problem with keep-alive timer and TCP flags" where TCP flags wasn't initialized in tcp_keepalive. Reported by Srinivas Gollakota with help of Oleg Tyshev.
|
2007-06-11 13:59:10 +00:00 |
|
fbernon
|
5993c816d8
|
Minor fix. Add "static" to IGMP's global variables, and rename group_list to igmp_group_list...
|
2007-06-11 07:27:12 +00:00 |
|
fbernon
|
15ccac78d9
|
Minor fix. Add comments in source file from documentation text file by Dominik Spies.
|
2007-06-11 07:26:10 +00:00 |
|
fbernon
|
d81841f54e
|
Minor fix (coding style)
|
2007-06-10 20:02:43 +00:00 |
|
goldsimon
|
95f4c02381
|
Included switch LWIP_UDPLITE (enabled by default) to switch off UDP-Lite support if not needed (reduces udp.c code size)
|
2007-06-10 12:02:24 +00:00 |
|
goldsimon
|
df0e4492a7
|
Forgot some brackets in an if statement in v1.109
|
2007-06-10 09:49:04 +00:00 |
|
fbernon
|
e01f342048
|
Contrib module by Dominik Spies: autoip.h, autoip.c, dhcp.h, dhcp.c, netif.h, netif.c, etharp.h, etharp.c, opt.h: AutoIP implementation available for IPv4, with new options LWIP_AUTOIP and LWIP_DHCP_AUTOIP_COOP if you want to cooperate with DHCP. Some tips to adapt (see TODO mark in the source code).
|
2007-06-09 16:57:04 +00:00 |
|
fbernon
|
792f5b3f22
|
Patch from Jared Momose (j.momose@ieee.org) for bug #19699 : "Bug in SNMP ASN1 decode; submitted patch"
|
2007-06-09 10:36:21 +00:00 |
|
fbernon
|
a42baedc28
|
Just add a comment to explain that the lwip_sendto patch for LWIP_TCPIP_CORE_LOCKING option is just show a sample (it's not a full implementation, RAW connection and "to" field are not handled, ...)
|
2007-06-09 09:59:16 +00:00 |
|
goldsimon
|
6607cab902
|
set netif->output to etharp_output by default to save a function call
|
2007-06-08 22:42:43 +00:00 |
|
goldsimon
|
3a09de82e3
|
Corrected #if ... when to include copy_from_pbuf()
|
2007-06-08 22:20:59 +00:00 |
|
goldsimon
|
c028619cdd
|
Modified order of parameters for etharp_output() to match netif->output so etharp_output() can be used directly as netif->output to save one function call.
|
2007-06-08 22:20:05 +00:00 |
|
goldsimon
|
6b1dc21383
|
Changed etharp_tmr() to be smaller
|
2007-06-08 22:19:23 +00:00 |
|
goldsimon
|
613acd93c0
|
Minor change: don't define some local (unused) variables if LWIP_TCPIP_CORE_LOCKING=1
|
2007-06-08 21:33:28 +00:00 |
|
goldsimon
|
837cb42679
|
Done some work on task #1549 (function documentation)
|
2007-06-08 20:59:17 +00:00 |
|
goldsimon
|
0e9cb48ea1
|
Changed define NETIF_INIT_SNMP(type, speed) to include the name of the struct netif to change...
|
2007-06-08 19:59:20 +00:00 |
|
fbernon
|
090aaefb39
|
Add LWIP_TCPIP_CORE_LOCKING option (0 as default value) to experiment "locking" as feature to communicate with tcpip_thread for sequential API (netconn & socket layers). Add a alternative code for lwip_sendto to how the code can be optimized with such feature....
|
2007-06-08 19:27:59 +00:00 |
|
goldsimon
|
0b9c9f9ede
|
pbuf_copy(): Corrected a wrong comment & try to behave correctly if LWIP_NOASSERT is defined
|
2007-06-08 17:27:36 +00:00 |
|
goldsimon
|
8e65fb920f
|
loopif_output(): use pbuf_copy() to copy the pbuf to reduce code size
|
2007-06-08 17:24:58 +00:00 |
|
goldsimon
|
945460c67e
|
Added define NETIF_INIT_SNMP(type, speed) to initialize per-netif snmp variables, added initialization of those to slipif and loopif.
|
2007-06-08 17:17:41 +00:00 |
|
goldsimon
|
b7e4d2a8ff
|
Done some work on task #1549 (function documentation) and minor changes to meet coding standard + added some comments to make the code easier to read.
|
2007-06-08 17:10:05 +00:00 |
|
fbernon
|
9768657fc7
|
Minor fix (spaces)
|
2007-06-08 16:24:28 +00:00 |
|
goldsimon
|
a185e19bc1
|
Let lookup_group() call lookfor_group() to reduce code size, done some work on task #1549 (function documentation) and minor changes to meet coding standard
|
2007-06-08 12:54:40 +00:00 |
|
goldsimon
|
b7603f8600
|
Done some work on task #1549 (function documentation)
|
2007-06-08 12:52:46 +00:00 |
|
goldsimon
|
d8d281281c
|
Done some work on task #1549 (function documentation)
|
2007-06-08 12:08:44 +00:00 |
|
goldsimon
|
5ee9c95ebd
|
Fixed a cast warning by including the type to TCP_PCB_COMMON: (Moved members common to structures tcp_pcp and tcp_listen_pcb into define TCP_PCB_COMMON (like IP_PCB) to keep (possible) code changes consistent.)
|
2007-06-08 12:00:45 +00:00 |
|
goldsimon
|
fb5a1a2c0f
|
Minor changes to meet coding standard
|
2007-06-08 11:51:57 +00:00 |
|
goldsimon
|
4a5a7ee922
|
Done some work on task #1549 (function documentation)
|
2007-06-08 11:49:59 +00:00 |
|
goldsimon
|
d258bc263a
|
Done some work on task #1549 (function documentation)
|
2007-06-08 11:35:54 +00:00 |
|
goldsimon
|
8a30754e9c
|
Done some work on task #1549 (function documentation) and minor changes to meet coding standard
|
2007-06-08 11:30:14 +00:00 |
|
goldsimon
|
a14bc9ed44
|
Moved members common to structures tcp_pcp and tcp_listen_pcb into define TCP_PCB_COMMON (like IP_PCB) to keep (possible) code changes consistent.
|
2007-06-08 11:28:47 +00:00 |
|
fbernon
|
75adf4bac6
|
Fix typo and remove RAW_STATS (not used)
|
2007-06-08 07:22:21 +00:00 |
|
goldsimon
|
8d6013454c
|
Done some work on task #1549 (function documentation)
|
2007-06-07 21:36:20 +00:00 |
|
goldsimon
|
1a25062af0
|
Done some work on task #1549 (function documentation)
|
2007-06-07 21:29:44 +00:00 |
|
goldsimon
|
8aedcadd3e
|
Done some work on task #1549 (function documentation) and minor changes to meet coding standard
|
2007-06-07 21:29:13 +00:00 |
|
goldsimon
|
027d59fd46
|
Done some work on task #1549 (function documentation)
|
2007-06-07 20:56:48 +00:00 |
|
fbernon
|
273e70e403
|
Minor, fix an obsolete comment about LWIP_SO_RCVTIMEO
|
2007-06-07 14:18:38 +00:00 |
|
goldsimon
|
aee6c1f72f
|
Corrected setsockopt for LWIP_IGMP=1 (did not compile & errors were not returned)
|
2007-06-05 18:46:10 +00:00 |
|