Serves a webpage and saves the user entered data in a .txt file all on the MBED
Fork of EthernetNetIf by
Diff: LPC2368/if/lwip/lwipNetDnsRequest.h
- Revision:
- 1:ba68cceb2917
- Parent:
- 0:422060928e37
- Child:
- 3:0401477beaa3
diff -r 422060928e37 -r ba68cceb2917 LPC2368/if/lwip/lwipNetDnsRequest.h --- a/LPC2368/if/lwip/lwipNetDnsRequest.h Fri Jun 11 16:25:22 2010 +0000 +++ b/LPC2368/if/lwip/lwipNetDnsRequest.h Fri Jun 18 09:20:27 2010 +0000 @@ -39,6 +39,8 @@ //Execute request & return OK if found, NOTFOUND or ERROR on error, or PROCESSING if the request has not completed yet virtual void poll(); + + virtual void close(); protected: void foundCb(const char *name, ip_addr_t *ipaddr); @@ -58,6 +60,10 @@ //Static callbacks : Transforms into a C++ callback static void sFoundCb(const char *name, ip_addr_t *ipaddr, void *arg); + + static void dnsTick(); + + bool m_closing; }; #endif