ap

Dependencies:   DnsQuery

Dependents:   WizFi310_TCP_Echo_Server_Example

Fork of NetworkSocketAPI by NetworkSocketAPI

Revision:
98:0f614f1d0398
Parent:
96:656011e49d9f
Child:
103:37decbcb1108
--- a/UDPSocket.h	Tue Apr 19 18:24:46 2016 -0500
+++ b/UDPSocket.h	Tue Apr 19 18:24:57 2016 -0500
@@ -33,25 +33,6 @@
      *  @param iface    Interface to open socket on
      */
     virtual int open(NetworkInterface *iface);
-    
-    /** Bind a UDP Server Socket to a specific port
-     *  @param port     The port to listen for incoming connections on
-     *  @return         0 on success, negative on failure.
-     */
-    int bind(uint16_t port);
-
-    /** Bind a UDP Server Socket to a local address
-     *  @param address  The null-terminated address to listen for incoming connections on
-     *  @param port     The port to listen for incoming connections on
-     *  @return         0 on success, negative on failure.
-     */
-    int bind(const char *address, uint16_t port);
-
-    /** Bind a UDP Server Socket to a local address
-     *  @param address  The SocketAddress to listen for incoming connections on
-     *  @return         0 on success, negative on failure.
-     */
-    int bind(const SocketAddress &address);
 
     /** Send a packet to a remote endpoint
      *  @param host     The host to connect to. It can either be an IP Address