First step: AutoIP compiled in and working

Dependencies:   mbed

Revision:
1:4218cacaf696
Parent:
0:55a05330f8cc
diff -r 55a05330f8cc -r 4218cacaf696 if/net/net.cpp
--- a/if/net/net.cpp	Fri Jun 18 09:11:35 2010 +0000
+++ b/if/net/net.cpp	Fri Jun 18 15:54:21 2010 +0000
@@ -39,9 +39,12 @@
 
 void Net::poll()
 {
+  //DBG("\r\nNet : Services polling\r\n");
 
   //Poll Services
-  NetService::servicesPoll();     
+  NetService::servicesPoll();  
+  
+  //DBG("\r\nNet : Interfaces polling\r\n");   
       
   //Poll Interfaces
   list<NetIf*>::iterator pIfIt;
@@ -51,6 +54,8 @@
     (*pIfIt)->poll();
   }
   
+  //DBG("\r\nNet : Sockets polling\r\n");
+  
   //Poll Tcp Sockets
   list<NetTcpSocket*>::iterator pNetTcpSocketIt;