this will take a image from C328 serial camera and store those images in mbed flash as html and this html page is uploaded into the server at ip:192.168.1.2
Diff: lwip/HTTPServer/HTTPLog.h
- Revision:
- 0:e1a0471e5ffb
diff -r 000000000000 -r e1a0471e5ffb lwip/HTTPServer/HTTPLog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lwip/HTTPServer/HTTPLog.h Wed Dec 15 15:01:56 2010 +0000 @@ -0,0 +1,19 @@ +#ifndef HTTPLOG_H +#define HTTPLOG_H + +#include "HTTPServer.h" + +class HTTPLog : public HTTPHandler { + public: + HTTPLog(const char *prefix) : HTTPHandler(prefix) {} + HTTPLog(HTTPServer *server, const char *prefix) : HTTPHandler(prefix) { server->addHandler(this); } + + private: + virtual HTTPHandle action(HTTPConnection *con) const { + struct ip_addr ip = con->pcb()->remote_ip; + printf("%hhu.%hhu.%hhu.%hhu %s %s", (ip.addr)&0xFF, (ip.addr>>8)&0xFF, (ip.addr>>16)&0xFF, (ip.addr>>24)&0xFF, (con->getType() == POST? "POST" : "GET"), con->getURL()); + return HTTP_AddFields; + } +}; + +#endif