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
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 #ifndef SOCKET_H_
emilmont 3:e6474399e057 19 #define SOCKET_H_
emilmont 3:e6474399e057 20
emilmont 3:e6474399e057 21 #include "lwip/sockets.h"
emilmont 3:e6474399e057 22 #include "lwip/netdb.h"
emilmont 3:e6474399e057 23
emilmont 3:e6474399e057 24 //DNS
emilmont 3:e6474399e057 25 inline struct hostent *gethostbyname(const char *name) {
emilmont 3:e6474399e057 26 return lwip_gethostbyname(name);
emilmont 3:e6474399e057 27 }
emilmont 3:e6474399e057 28
emilmont 3:e6474399e057 29 inline int gethostbyname_r(const char *name, struct hostent *ret, char *buf, size_t buflen, struct hostent **result, int *h_errnop) {
emilmont 3:e6474399e057 30 return lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop);
emilmont 3:e6474399e057 31 }
emilmont 3:e6474399e057 32
emilmont 6:cd2e5559786d 33 class TimeInterval;
emilmont 6:cd2e5559786d 34
emilmont 8:9cf9c2d45264 35 /** Socket file descriptor and select wrapper
emilmont 8:9cf9c2d45264 36 */
emilmont 3:e6474399e057 37 class Socket {
emilmont 3:e6474399e057 38 public:
emilmont 8:9cf9c2d45264 39 /** Socket
emilmont 8:9cf9c2d45264 40 */
emilmont 3:e6474399e057 41 Socket();
emilmont 3:e6474399e057 42
emilmont 8:9cf9c2d45264 43 /** Close the socket file descriptor
emilmont 8:9cf9c2d45264 44 */
emilmont 3:e6474399e057 45 int close();
emilmont 3:e6474399e057 46
emilmont 3:e6474399e057 47 protected:
emilmont 3:e6474399e057 48 int _sock_fd;
emilmont 5:300e7ad2dc1d 49 int init_socket(int type);
emilmont 3:e6474399e057 50
emilmont 6:cd2e5559786d 51 int wait_readable(TimeInterval& timeout);
emilmont 6:cd2e5559786d 52 int wait_writable(TimeInterval& timeout);
emilmont 3:e6474399e057 53
emilmont 3:e6474399e057 54 private:
emilmont 6:cd2e5559786d 55 int select(struct timeval *timeout, bool read, bool write);
emilmont 6:cd2e5559786d 56 };
emilmont 6:cd2e5559786d 57
emilmont 8:9cf9c2d45264 58 /** Time interval class used to specify timeouts
emilmont 8:9cf9c2d45264 59 */
emilmont 6:cd2e5559786d 60 class TimeInterval {
emilmont 6:cd2e5559786d 61 friend class Socket;
emilmont 6:cd2e5559786d 62
emilmont 6:cd2e5559786d 63 public:
emilmont 8:9cf9c2d45264 64 /** Time Interval
emilmont 8:9cf9c2d45264 65 \param ms time interval expressed in milliseconds
emilmont 8:9cf9c2d45264 66 */
emilmont 6:cd2e5559786d 67 TimeInterval(int ms);
emilmont 6:cd2e5559786d 68
emilmont 6:cd2e5559786d 69 private:
emilmont 6:cd2e5559786d 70 struct timeval _time;
emilmont 3:e6474399e057 71 };
emilmont 3:e6474399e057 72
emilmont 3:e6474399e057 73 #endif /* SOCKET_H_ */