Oscar F wrote:
Hello everybody, i'm using lwip 1.3.0 port to AVR for using in the board EVK1100.

Iḿ seeing a example code of tftp, and i don't understand this part, exactly the part to call the function lwip_select.
Can anybody help me?

and where is the documentation for all API and struct, i only have these kind of documents

From having a quick look at the code below, it is not using lwIP-specific API functions at all, but simply the socket API, which is a compatibility API to the standard BSD socket interface (select() is also a BSD-socket-API function). The only difference is you are using the internal names (with lwip_ at the front).

Since you don't seem to know your way, you should start with a socket reference (either opengroup - e.g. use google to search "opengroup select"; or microsoft MSDN - be aware that microsoft doesn't follow the standard everywhere, but they are mostly compatible to us and sometimes have great example code).

Simon


_______________________________________________
lwip-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/lwip-users

Reply via email to