NetworkSocketAPI

Dependencies:   DnsQuery

Dependents:   HelloWizFi250Interface

Fork of NetworkSocketAPI by NetworkSocketAPI

Revision:
76:bbe51641f405
Parent:
75:dea0cdb42241
Child:
77:b66a6984ed2d
--- a/TCPSocket.h	Tue Apr 05 06:56:22 2016 -0500
+++ b/TCPSocket.h	Tue Apr 05 09:07:28 2016 -0500
@@ -48,20 +48,20 @@
     /** Check if the socket is connected
     \return         true if connected, false otherwise
     */
-    bool is_connected(void);
+    bool is_connected();
     
     /** Send data to the remote host
     \param data     The buffer to send to the host
     \param size     The length of the buffer to send
     \return         Number of written bytes on success, negative on failure
-     */
+    */
     int send(const void *data, unsigned size);
     
     /** Receive data from the remote host
     \param data     The buffer in which to store the data received from the host
     \param size     The maximum length of the buffer
     \return         Number of received bytes on success, negative on failure
-     */
+    */
     int recv(void *data, unsigned size);
 
     /** Register a callback on when send is ready