Single instance HTTP Server using new Ethernet Interface. Blocking mode only; this improved stability, but the HTTP server must be started from a separate thread.

Dependents:   SmartLight

Fork of HTTPServer by Henry Leinen

Committer:
cabledev
Date:
Thu May 15 16:09:51 2014 +0000
Revision:
17:d7186c696729
Parent:
16:cc3f5c53d0d5
- converted to blocking mode & removed polling; greatly improving stability, but HTTP server must be started from a separate thread (not the main app thread); - moved ethernet interface and port assignment out of start() method; - updated log messages

Who changed what in which revision?

UserRevisionLine numberNew contents of line
leihen 15:909dcf44c3db 1 #ifndef __DEBUG_H__
leihen 15:909dcf44c3db 2 #define __DEBUG_H__
leihen 15:909dcf44c3db 3
leihen 15:909dcf44c3db 4
leihen 15:909dcf44c3db 5 #ifdef DEBUG
leihen 15:909dcf44c3db 6 #define INFO(x, ...) std::printf("[INFO: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
leihen 15:909dcf44c3db 7 #define WARN(x, ...) std::printf("[WARN: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
leihen 15:909dcf44c3db 8 #define ERR(x, ...) std::printf("[ERR: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__);
leihen 15:909dcf44c3db 9 #else
leihen 15:909dcf44c3db 10 #define INFO(x, ...)
leihen 15:909dcf44c3db 11 #define WARN(x, ...)
leihen 15:909dcf44c3db 12 #define ERR(x, ...)
leihen 15:909dcf44c3db 13 #endif
leihen 15:909dcf44c3db 14
leihen 15:909dcf44c3db 15
leihen 15:909dcf44c3db 16 #endif // __DEBUG_H__#ifndef __DEBUG_H__