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
2025-08-11 08:54:38 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
lwip
/
src
/
api
History
fbernon
1dd1064051
Fix err_stderr[] table with new err.h defines.
2007-12-12 08:25:23 +00:00
..
api_lib.c
fix bug
#21656
(recvmbox problem in netconn API): always allocate a recvmbox in netconn_new_with_proto_and_callback. For a tcp-listen netconn, this recvmbox is later freed and a new mbox is allocated for acceptmbox. This is a fix for thread-safety and allocates all items needed for a netconn when the netconn is created.
2007-12-02 14:53:50 +00:00
api_msg.c
fix bug
#21656
(recvmbox problem in netconn API): always allocate a recvmbox in netconn_new_with_proto_and_callback. For a tcp-listen netconn, this recvmbox is later freed and a new mbox is allocated for acceptmbox. This is a fix for thread-safety and allocates all items needed for a netconn when the netconn is created.
2007-12-02 14:53:50 +00:00
err.c
Fix err_stderr[] table with new err.h defines.
2007-12-12 08:25:23 +00:00
netbuf.c
Minor changes (but in lot of files): add #if/#endif for options where they could miss. #if LWIP_xxx if always put after #include "lwip/opt.h" (note this one indirectly include cc.h). Move others includes inside #if/#endif block.
2007-09-07 23:01:59 +00:00
netdb.c
netdb.c: add a LWIP_DNS_API_HOSTENT_STORAGE option to decide to use a static set of variables (=0) or a local one (=1). In this last case, your port should provide a function "struct hostent* sys_thread_hostent( struct hostent* h)" which have to do a copy of "h" and return a pointer ont the "per-thread" copy.
2007-12-05 23:00:02 +00:00
netifapi.c
netifapi.h, netifapi.c: add function netifapi_netif_set_default. Change the common function to reduce a little bit the footprint (for all functions using only the "netif" parameter).
2007-10-05 13:34:48 +00:00
sockets.c
Changed error handling: ERR_MEM, ERR_BUF and ERR_RTE are seen as non-fatal, all other errors are fatal. netconns and sockets block most operations once they have seen a fatal error.
2007-11-27 21:15:44 +00:00
tcpip.c
Minor change (doxygen tags)
2007-11-24 22:13:25 +00:00