Implementation of the NetworkSocketAPI for LWIP

Dependencies:   lwip-eth lwip-sys lwip

Dependents:   HelloLWIPInterface HelloLWIPInterfaceNonBlocking LWIPInterfaceTests SimpleHTTPExample ... more

Revision:
8:cef01e812975
Parent:
7:08d5a40ae448
Child:
12:899403b675fe
--- a/LWIPInterface.h	Wed Mar 09 05:58:19 2016 +0000
+++ b/LWIPInterface.h	Wed Mar 09 06:01:14 2016 +0000
@@ -41,12 +41,12 @@
     virtual void destroySocket(SocketInterface *socket);
 
 private:
-    
+
     // Implementation of the TCP SocketInterface for LWIP
     class LWIPSocket : public SocketInterface
     {
-    public:    
-        
+    public:
+
         LWIPSocket(int fd) : fd(fd) {}
         int fd;