mbed socket API

Dependents:   EthernetInterface EthernetInterface_RSF EthernetInterface EthernetInterface ... more

Deprecated

This is an mbed 2 sockets library. For mbed 5, network sockets have been revised to better support additional network stacks and thread safety here.

Committer:
bogdanm
Date:
Mon Aug 19 18:38:18 2013 +0300
Revision:
19:434906b5b977
Parent:
16:2d471deff212
Sync with official mbed library release 66

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 3:e6474399e057 1 /* Copyright (C) 2012 mbed.org, MIT License
emilmont 3:e6474399e057 2 *
emilmont 3:e6474399e057 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
emilmont 3:e6474399e057 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
emilmont 3:e6474399e057 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
emilmont 3:e6474399e057 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
emilmont 3:e6474399e057 7 * furnished to do so, subject to the following conditions:
emilmont 3:e6474399e057 8 *
emilmont 3:e6474399e057 9 * The above copyright notice and this permission notice shall be included in all copies or
emilmont 3:e6474399e057 10 * substantial portions of the Software.
emilmont 3:e6474399e057 11 *
emilmont 3:e6474399e057 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
emilmont 3:e6474399e057 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
emilmont 3:e6474399e057 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
emilmont 3:e6474399e057 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
emilmont 3:e6474399e057 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
emilmont 3:e6474399e057 17 */
emilmont 3:e6474399e057 18
emilmont 3:e6474399e057 19 #ifndef TCPSOCKET_H
emilmont 3:e6474399e057 20 #define TCPSOCKET_H
emilmont 3:e6474399e057 21
emilmont 3:e6474399e057 22 #include "Socket/Socket.h"
emilmont 5:300e7ad2dc1d 23 #include "Socket/Endpoint.h"
emilmont 3:e6474399e057 24
emilmont 3:e6474399e057 25 /**
emilmont 8:9cf9c2d45264 26 TCP socket connection
emilmont 3:e6474399e057 27 */
emilmont 7:ac5f77f4497a 28 class TCPSocketConnection : public Socket, public Endpoint {
emilmont 3:e6474399e057 29 friend class TCPSocketServer;
emilmont 3:e6474399e057 30
emilmont 3:e6474399e057 31 public:
emilmont 8:9cf9c2d45264 32 /** TCP socket connection
emilmont 3:e6474399e057 33 */
emilmont 3:e6474399e057 34 TCPSocketConnection();
emilmont 3:e6474399e057 35
emilmont 8:9cf9c2d45264 36 /** Connects this TCP socket to the server
emilmont 3:e6474399e057 37 \param host The host to connect to. It can either be an IP Address or a hostname that will be resolved with DNS.
emilmont 3:e6474399e057 38 \param port The host's port to connect to.
emilmont 3:e6474399e057 39 \return 0 on success, -1 on failure.
emilmont 3:e6474399e057 40 */
emilmont 4:75988d748e4d 41 int connect(const char* host, const int port);
emilmont 3:e6474399e057 42
emilmont 11:3d83c348fb8b 43 /** Check if the socket is connected
emilmont 11:3d83c348fb8b 44 \return true if connected, false otherwise.
emilmont 11:3d83c348fb8b 45 */
emilmont 11:3d83c348fb8b 46 bool is_connected(void);
emilmont 11:3d83c348fb8b 47
emilmont 16:2d471deff212 48 /** Send data to the remote host.
emilmont 16:2d471deff212 49 \param data The buffer to send to the host.
emilmont 16:2d471deff212 50 \param length The length of the buffer to send.
emilmont 16:2d471deff212 51 \return the number of written bytes on success (>=0) or -1 on failure
emilmont 3:e6474399e057 52 */
emilmont 10:d24738f4ef99 53 int send(char* data, int length);
emilmont 3:e6474399e057 54
emilmont 16:2d471deff212 55 /** Send all the data to the remote host.
emilmont 16:2d471deff212 56 \param data The buffer to send to the host.
emilmont 16:2d471deff212 57 \param length The length of the buffer to send.
emilmont 16:2d471deff212 58 \return the number of written bytes on success (>=0) or -1 on failure
emilmont 16:2d471deff212 59 */
emilmont 10:d24738f4ef99 60 int send_all(char* data, int length);
emilmont 3:e6474399e057 61
emilmont 16:2d471deff212 62 /** Receive data from the remote host.
emilmont 16:2d471deff212 63 \param data The buffer in which to store the data received from the host.
emilmont 16:2d471deff212 64 \param length The maximum length of the buffer.
emilmont 16:2d471deff212 65 \return the number of received bytes on success (>=0) or -1 on failure
emilmont 3:e6474399e057 66 */
emilmont 10:d24738f4ef99 67 int receive(char* data, int length);
emilmont 3:e6474399e057 68
emilmont 16:2d471deff212 69 /** Receive all the data from the remote host.
emilmont 16:2d471deff212 70 \param data The buffer in which to store the data received from the host.
emilmont 16:2d471deff212 71 \param length The maximum length of the buffer.
emilmont 16:2d471deff212 72 \return the number of received bytes on success (>=0) or -1 on failure
emilmont 16:2d471deff212 73 */
emilmont 10:d24738f4ef99 74 int receive_all(char* data, int length);
emilmont 5:300e7ad2dc1d 75
emilmont 3:e6474399e057 76 private:
emilmont 11:3d83c348fb8b 77 bool _is_connected;
emilmont 3:e6474399e057 78
emilmont 3:e6474399e057 79 };
emilmont 3:e6474399e057 80
emilmont 3:e6474399e057 81 #endif