mbed IP library over Ethernet

Dependencies:   lwip-eth Socket lwip lwip-sys

Dependents:   denki-yohou_b Network-RTOS NTPClient_HelloWorld temp_FIAP ... more

Legacy Networking Libraries

This is an mbed 2 networking library. For mbed 5, the networking libraries have been revised to better support additional network stacks and thread safety here.

Revision:
35:cba86db5ab96
Parent:
30:4d7d7dc8485f
Child:
37:926eb6517318
--- a/EthernetInterface.h	Tue Oct 01 11:29:54 2013 +0000
+++ b/EthernetInterface.h	Wed Oct 09 12:00:18 2013 +0100
@@ -69,6 +69,16 @@
    * \return a pointer to a string containing the IP address
    */
   static char* getIPAddress();
+
+  /** Get the Gateway address of your Ethernet interface
+   * \return a pointer to a string containing the Gateway address
+   */
+  static char* getGateway();
+
+  /** Get the Network mask of your Ethernet interface
+   * \return a pointer to a string containing the Network mask
+   */
+  static char* getNetworkMask();
 };
 
 #include "TCPSocketConnection.h"