fort Socket

Fork of Socket by mbed official

Committer:
emilmont
Date:
Fri Jul 27 15:50:23 2012 +0000
Revision:
8:9cf9c2d45264
Parent:
6:cd2e5559786d
Child:
10:d24738f4ef99
Update documentation

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:1f77255a22f5 1 /* Copyright (C) 2012 mbed.org, MIT License
donatien 0:1f77255a22f5 2 *
donatien 0:1f77255a22f5 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
donatien 0:1f77255a22f5 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
donatien 0:1f77255a22f5 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
donatien 0:1f77255a22f5 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
donatien 0:1f77255a22f5 7 * furnished to do so, subject to the following conditions:
donatien 0:1f77255a22f5 8 *
donatien 0:1f77255a22f5 9 * The above copyright notice and this permission notice shall be included in all copies or
donatien 0:1f77255a22f5 10 * substantial portions of the Software.
donatien 0:1f77255a22f5 11 *
donatien 0:1f77255a22f5 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
donatien 0:1f77255a22f5 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
donatien 0:1f77255a22f5 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
donatien 0:1f77255a22f5 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
donatien 0:1f77255a22f5 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
donatien 0:1f77255a22f5 17 */
donatien 0:1f77255a22f5 18
donatien 0:1f77255a22f5 19 #ifndef UDPSOCKET_H
donatien 0:1f77255a22f5 20 #define UDPSOCKET_H
donatien 0:1f77255a22f5 21
emilmont 3:e6474399e057 22 #include "Socket/Socket.h"
emilmont 5:300e7ad2dc1d 23 #include "Socket/UDPPacket.h"
donatien 0:1f77255a22f5 24 #include <cstdint>
donatien 0:1f77255a22f5 25
donatien 0:1f77255a22f5 26 /**
emilmont 8:9cf9c2d45264 27 UDP Socket
donatien 0:1f77255a22f5 28 */
emilmont 3:e6474399e057 29 class UDPSocket : public Socket {
emilmont 5:300e7ad2dc1d 30
emilmont 5:300e7ad2dc1d 31 public:
emilmont 8:9cf9c2d45264 32 /** Instantiate an UDP Socket.
donatien 0:1f77255a22f5 33 */
donatien 0:1f77255a22f5 34 UDPSocket();
donatien 0:1f77255a22f5 35
donatien 0:1f77255a22f5 36 ~UDPSocket();
emilmont 3:e6474399e057 37
emilmont 8:9cf9c2d45264 38 /** Init the UDP Client Socket without binding it to any specific port
emilmont 8:9cf9c2d45264 39 \return 0 on success, -1 on failure.
emilmont 8:9cf9c2d45264 40 */
emilmont 5:300e7ad2dc1d 41 int init(void);
emilmont 5:300e7ad2dc1d 42
emilmont 3:e6474399e057 43 /** Bind a UDP Server Socket to a specific port
emilmont 8:9cf9c2d45264 44 \param port The port to listen for incoming connections on
donatien 0:1f77255a22f5 45 \return 0 on success, -1 on failure.
donatien 0:1f77255a22f5 46 */
donatien 0:1f77255a22f5 47 int bind(int port);
emilmont 5:300e7ad2dc1d 48
emilmont 5:300e7ad2dc1d 49 /** Send a packet to the remote host.
emilmont 5:300e7ad2dc1d 50 \param packet UDP Packet to be sent to the remote host
emilmont 8:9cf9c2d45264 51 \param timeout_ms The maximum amount of time in ms to wait while trying to send the packet.
donatien 0:1f77255a22f5 52 \return the number of written bytes on success (>=0) or -1 on failure
donatien 0:1f77255a22f5 53 */
emilmont 6:cd2e5559786d 54 int sendTo(UDPPacket& packet, int timeout_ms=0);
emilmont 5:300e7ad2dc1d 55
donatien 0:1f77255a22f5 56 /** Receive data from a remote host.
emilmont 5:300e7ad2dc1d 57 If a message is too long to fit in the supplied packet, excess bytes are
emilmont 5:300e7ad2dc1d 58 discarded.
emilmont 5:300e7ad2dc1d 59 \param packet UDP Packet received from the remote host
emilmont 8:9cf9c2d45264 60 \param timeout The maximum amount of time in ms to wait while trying to receive packet.
donatien 0:1f77255a22f5 61 \return the number of received bytes on success (>=0) or -1 on failure
donatien 0:1f77255a22f5 62 */
emilmont 6:cd2e5559786d 63 int receiveFrom(UDPPacket& packet, int timeout_ms=0);
donatien 0:1f77255a22f5 64 };
donatien 0:1f77255a22f5 65
donatien 0:1f77255a22f5 66 #endif