This website requires JavaScript.
Explore
Help
Register
Sign In
abc
/
lwip
Watch
1
Star
0
Fork
0
You've already forked lwip
mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced
2026-02-07 05:36:49 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
lwip
/
src
/
core
History
goldsimon
887077b5a4
pbuf_alloc(PBUF_POOL): Added asserts to make sure payload+len is still in bound of the pbuf (also to make sure bug
#15659
is fixed).
2007-05-16 10:45:28 +00:00
..
ipv4
Included patch
#5920
: Create define to override C-library memcpy. 2 Defines are created: MEMCPY() for normal memcpy, SMEMCPY() for situations where some compilers might inline the copy and save a function call. Also replaced all calls to memcpy() with calls to (S)MEMCPY().
2007-05-10 05:20:05 +00:00
ipv6
Included patch
#5920
: Create define to override C-library memcpy. 2 Defines are created: MEMCPY() for normal memcpy, SMEMCPY() for situations where some compilers might inline the copy and save a function call. Also replaced all calls to memcpy() with calls to (S)MEMCPY().
2007-05-10 05:20:05 +00:00
snmp
Fix for bug
#19740
: 2 static functions are unused, simply ifdefing them out for now to get rid of warnings
2007-05-13 11:08:04 +00:00
dhcp.c
Introduced #define LWIP_UNUSED_ARG(x) use this for and architecture-independent form to tell the compiler you intentionally are not using this variable. Can be overriden in cc.h.
2007-04-04 19:54:22 +00:00
inet6.c
…
inet.c
Apply patch
#5745
: Fix "Constant is long" warnings with 16bit
2007-04-11 13:32:41 +00:00
mem.c
Minor fix (tabs)
2007-05-15 16:34:30 +00:00
memp.c
task
#6831
: removed the option PBUF_POOL_USES_MEMP and removed the old pbuf pool code, pbuf pool now always allocates from a memp pool
2007-05-13 18:17:22 +00:00
netif.c
…
pbuf.c
pbuf_alloc(PBUF_POOL): Added asserts to make sure payload+len is still in bound of the pbuf (also to make sure bug
#15659
is fixed).
2007-05-16 10:45:28 +00:00
raw.c
Added some more LWIP_UNUSED_ARG()s
2007-04-24 08:35:19 +00:00
stats.c
Removed unused pbuf stats items
2007-05-08 18:55:29 +00:00
sys.c
Added some ASSERTs and NULL-pointer checks to sys_timeout/sys_untimeout
2007-05-10 14:23:38 +00:00
tcp_in.c
* tcp.c, tcp_in.c, tcp_out.c, tcp.h: Modify way the retransmission
2007-04-12 14:56:07 +00:00
tcp_out.c
Included patch
#5920
: Create define to override C-library memcpy. 2 Defines are created: MEMCPY() for normal memcpy, SMEMCPY() for situations where some compilers might inline the copy and save a function call. Also replaced all calls to memcpy() with calls to (S)MEMCPY().
2007-05-10 05:20:05 +00:00
tcp.c
Included patch
#5920
: Create define to override C-library memcpy. 2 Defines are created: MEMCPY() for normal memcpy, SMEMCPY() for situations where some compilers might inline the copy and save a function call. Also replaced all calls to memcpy() with calls to (S)MEMCPY().
2007-05-10 05:20:05 +00:00
udp.c
…