WIZnet WIZ550io (w5500) support

Dependents:   HTTPClient_HelloWorld_WIZ550io NTPClient_HelloWorld_WIZ550io

Fork of WIZ820ioInterface by ban4jp -

Revision:
9:615198a7b82b
Parent:
5:fb15c35d1e28
--- a/Socket/Socket.h	Sun Dec 15 12:29:47 2013 +0000
+++ b/Socket/Socket.h	Mon Dec 23 13:51:35 2013 +0000
@@ -20,6 +20,11 @@
 
 #include "WIZ820io.h"
 
+#define htons(x) __REV16(x)
+#define ntohs(x) __REV16(x)
+#define htonl(x) __REV(x)
+#define ntohl(x) __REV(x)
+
 /** Socket file descriptor and select wrapper
   */
 class Socket {