ublox-at-cellular-interface_psm

Dependents:  

Revision:
43:cdd202c7177a
Parent:
41:69998003d95a
--- a/UbloxATCellularInterface.h	Mon Jan 06 14:29:40 2020 +0500
+++ b/UbloxATCellularInterface.h	Tue Feb 04 16:32:27 2020 +0500
@@ -233,34 +233,22 @@
      *  @return         Null-terminated representation of the local IP address
      *                  or null if no IP address has been received.
      */
-    MBED_DEPRECATED_SINCE("mbed-os-5.15", "String-based APIs are deprecated")
     virtual const char *get_ip_address();
 
-    /** @copydoc NetworkInterface::get_ip_address */
-    virtual nsapi_error_t get_ip_address(SocketAddress *address);
-
     /** Get the local network mask.
      *
      *  @return         Null-terminated representation of the local network mask
      *                  or null if no network mask has been received.
      */
-    MBED_DEPRECATED_SINCE("mbed-os-5.15", "String-based APIs are deprecated")
     virtual const char *get_netmask();
 
-    /** @copydoc NetworkInterface::get_netmask */
-    virtual nsapi_error_t get_netmask(SocketAddress *address);
-
     /** Get the local gateways.
      *
      *  @return         Null-terminated representation of the local gateway
      *                  or null if no network mask has been received.
      */
-    MBED_DEPRECATED_SINCE("mbed-os-5.15", "String-based APIs are deprecated")
     virtual const char *get_gateway();
 
-    /** @copydoc NetworkInterface::get_gateway */
-    virtual nsapi_error_t get_gateway(SocketAddress *address);
-
     /** Call back in case connection is lost.
      *
      * @param cb     The function to call.