Set specific IP Address/Port

Revision:
21:e356e039f917
Parent:
13:4bea5334b419
Child:
26:348eec457e58
--- a/main.cpp	Fri Sep 14 12:30:21 2018 +0100
+++ b/main.cpp	Thu Sep 27 13:30:25 2018 +0100
@@ -158,7 +158,11 @@
 
     retcode = sock.open(iface);
     if (retcode != NSAPI_ERROR_OK) {
+#if MBED_CONF_APP_SOCK_TYPE == TCP
+        print_function("TCPSocket.open() fails, code: %d\n", retcode);
+#else
         print_function("UDPSocket.open() fails, code: %d\n", retcode);
+#endif
         return -1;
     }