1

Dependencies:   ATParser

Dependents:   UDPNode

Revision:
1:af8bf1171171
Parent:
0:eb6507dc4669
Child:
2:3518f7c570de
--- a/ESP8266.h	Wed Jun 27 06:50:30 2018 +0000
+++ b/ESP8266.h	Wed Jun 27 07:17:17 2018 +0000
@@ -98,7 +98,7 @@
     * @param amount amount of data to be sent - max 1024
     * @return true only if data sent successfully
     */
-    bool send(const void *data, uint32_t linkId, uint32_t amount, const char* addr, int port);
+    bool send(const void *data, uint32_t amount, const char* addr, int port);
 
     /**
     * Receives data from an open socket
@@ -141,6 +141,9 @@
 
     char _ip_buffer[16];
     char _mac_buffer[18];
+    
+    int localOutPort;
+    int localInPort;
 };
 
 #endif