for EthernetInterface library compatibility.\\ ** Unoffical fix. may be a problem. **

Dependents:   SNIC-httpclient-example SNIC-ntpclient-example

Fork of SNICInterface by muRata

Committer:
ban4jp
Date:
Sat Nov 22 15:32:42 2014 +0000
Revision:
46:e1cb45f7a27f
Parent:
41:1c1b5ad4d491
Fixed: NTPClient library compatibility.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kishino 20:dd736d328de6 1 /* Copyright (C) 2012 mbed.org, MIT License
kishino 20:dd736d328de6 2 *
kishino 20:dd736d328de6 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
kishino 20:dd736d328de6 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
kishino 20:dd736d328de6 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
kishino 20:dd736d328de6 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
kishino 20:dd736d328de6 7 * furnished to do so, subject to the following conditions:
kishino 20:dd736d328de6 8 *
kishino 20:dd736d328de6 9 * The above copyright notice and this permission notice shall be included in all copies or
kishino 20:dd736d328de6 10 * substantial portions of the Software.
kishino 20:dd736d328de6 11 *
kishino 20:dd736d328de6 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
kishino 20:dd736d328de6 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
kishino 20:dd736d328de6 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
kishino 20:dd736d328de6 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
kishino 20:dd736d328de6 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
kishino 20:dd736d328de6 17 */
kishino 39:a1233ca02edf 18 /* Copyright (C) 2014 Murata Manufacturing Co.,Ltd., MIT License
kishino 41:1c1b5ad4d491 19 * port to the muRata, SWITCH SCIENCE Wi-FI module TypeYD SNIC-UART.
kishino 39:a1233ca02edf 20 */
kishino 20:dd736d328de6 21 #ifndef SOCKET_H_
kishino 20:dd736d328de6 22 #define SOCKET_H_
kishino 20:dd736d328de6 23
kishino 20:dd736d328de6 24 #include "SNIC_Core.h"
kishino 20:dd736d328de6 25 #include "SNIC_UartMsgUtil.h"
kishino 20:dd736d328de6 26
ban4jp 46:e1cb45f7a27f 27 #define htons(x) __REV16(x)
ban4jp 46:e1cb45f7a27f 28 #define ntohs(x) __REV16(x)
ban4jp 46:e1cb45f7a27f 29 #define htonl(x) __REV(x)
ban4jp 46:e1cb45f7a27f 30 #define ntohl(x) __REV(x)
ban4jp 46:e1cb45f7a27f 31
kishino 20:dd736d328de6 32 typedef unsigned long socklen_t;
kishino 20:dd736d328de6 33
kishino 20:dd736d328de6 34 /** Socket file descriptor and select wrapper
kishino 20:dd736d328de6 35 */
kishino 29:6a0ba999597d 36 class Socket {
kishino 20:dd736d328de6 37 public:
kishino 20:dd736d328de6 38 /** Socket
kishino 20:dd736d328de6 39 */
kishino 20:dd736d328de6 40 Socket();
kishino 20:dd736d328de6 41
kishino 29:6a0ba999597d 42 /** Set blocking or non-blocking mode of the socket and a timeout on
kishino 29:6a0ba999597d 43 blocking socket operations
kishino 29:6a0ba999597d 44 \param blocking true for blocking mode, false for non-blocking mode.
kishino 29:6a0ba999597d 45 \param timeout timeout in ms [Default: (1500)ms].
kishino 29:6a0ba999597d 46 */
kishino 29:6a0ba999597d 47 void set_blocking(bool blocking, unsigned int timeout=1500);
kishino 29:6a0ba999597d 48
kishino 20:dd736d328de6 49 /** Set socket options
kishino 20:dd736d328de6 50 @param level stack level (see: lwip/sockets.h)
kishino 20:dd736d328de6 51 @param optname option ID
kishino 20:dd736d328de6 52 @param optval option value
kishino 20:dd736d328de6 53 @param socklen_t length of the option value
kishino 20:dd736d328de6 54 @return 0 on success, -1 on failure
kishino 20:dd736d328de6 55 */
kishino 20:dd736d328de6 56 int set_option(int level, int optname, const void *optval, socklen_t optlen);
kishino 20:dd736d328de6 57
kishino 20:dd736d328de6 58 /** Get socket options
kishino 20:dd736d328de6 59 @param level stack level (see: lwip/sockets.h)
kishino 20:dd736d328de6 60 @param optname option ID
kishino 20:dd736d328de6 61 \param optval buffer pointer where to write the option value
kishino 20:dd736d328de6 62 \param socklen_t length of the option value
kishino 20:dd736d328de6 63 \return 0 on success, -1 on failure
kishino 20:dd736d328de6 64 */
kishino 20:dd736d328de6 65 int get_option(int level, int optname, void *optval, socklen_t *optlen);
kishino 20:dd736d328de6 66
kishino 20:dd736d328de6 67 /** Close the socket
kishino 20:dd736d328de6 68 \param shutdown free the left-over data in message queues
kishino 20:dd736d328de6 69 */
kishino 20:dd736d328de6 70 int close(bool shutdown=true);
kishino 20:dd736d328de6 71
kishino 26:f2e1030964e4 72 virtual ~Socket();
kishino 20:dd736d328de6 73
kishino 20:dd736d328de6 74 int createSocket( unsigned char bind = 0, unsigned int local_addr = 0, unsigned short port = 0 );
kishino 20:dd736d328de6 75
kishino 20:dd736d328de6 76 protected:
kishino 29:6a0ba999597d 77 int resolveHostName( const char *host_p );
kishino 29:6a0ba999597d 78
kishino 27:dcc4f34448f0 79 protected:
kishino 29:6a0ba999597d 80 int mSocketID;
kishino 20:dd736d328de6 81 bool _blocking;
kishino 20:dd736d328de6 82 int _timeout;
kishino 33:33f1bc919486 83 char *getSocketSendBuf();
kishino 33:33f1bc919486 84
kishino 20:dd736d328de6 85 private:
kishino 20:dd736d328de6 86
kishino 20:dd736d328de6 87 // int select(struct timeval *timeout, bool read, bool write);
kishino 20:dd736d328de6 88 };
kishino 20:dd736d328de6 89
kishino 20:dd736d328de6 90 #endif /* SOCKET_H_ */