Re: [lwip-users] Networking device discovery protocols

2015-06-16 Thread Markus Klein
Hallo, you dont need to implement the complete UPnP protocol. If the only functionality you need is, that Windows finds the device, you are fine with implementing SSDP. SSDP is the discovery protocol of UPnP. SSDP is a HTTP based Protocol and very easy to implement. In addition you need a

Re: [lwip-users] Closing tcp-Connection

2014-10-17 Thread Markus Klein
Hello, Thank you for your feedback, Sergio. Yes Im using the RAW-API but Im not calling tcp_tmr() or sys_check_timeouts(). As Im using a simple OS Im calling tcpip_thread () inside of a task. Am I correct that you use tcp_tmr () on Baremetal and tcpip_thread () when an OS is used? What