Host library for controlling a WiConnect enabled Wi-Fi module.

Dependents:   wiconnect-ota_example wiconnect-web_setup_example wiconnect-test-console wiconnect-tcp_server_example ... more

Committer:
dan_ackme
Date:
Sat Aug 23 05:39:17 2014 -0700
Revision:
17:7268f365676b
Fixes and documentation updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dan_ackme 17:7268f365676b 1 /**
dan_ackme 17:7268f365676b 2 * ACKme WiConnect Host Library is licensed under the BSD licence:
dan_ackme 17:7268f365676b 3 *
dan_ackme 17:7268f365676b 4 * Copyright (c)2014 ACKme Networks.
dan_ackme 17:7268f365676b 5 * All rights reserved.
dan_ackme 17:7268f365676b 6 *
dan_ackme 17:7268f365676b 7 * Redistribution and use in source and binary forms, with or without modification,
dan_ackme 17:7268f365676b 8 * are permitted provided that the following conditions are met:
dan_ackme 17:7268f365676b 9 *
dan_ackme 17:7268f365676b 10 * 1. Redistributions of source code must retain the above copyright notice,
dan_ackme 17:7268f365676b 11 * this list of conditions and the following disclaimer.
dan_ackme 17:7268f365676b 12 * 2. Redistributions in binary form must reproduce the above copyright notice,
dan_ackme 17:7268f365676b 13 * this list of conditions and the following disclaimer in the documentation
dan_ackme 17:7268f365676b 14 * and/or other materials provided with the distribution.
dan_ackme 17:7268f365676b 15 * 3. The name of the author may not be used to endorse or promote products
dan_ackme 17:7268f365676b 16 * derived from this software without specific prior written permission.
dan_ackme 17:7268f365676b 17 *
dan_ackme 17:7268f365676b 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS AND ANY EXPRESS OR IMPLIED
dan_ackme 17:7268f365676b 19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
dan_ackme 17:7268f365676b 20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
dan_ackme 17:7268f365676b 21 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
dan_ackme 17:7268f365676b 22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
dan_ackme 17:7268f365676b 23 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
dan_ackme 17:7268f365676b 24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
dan_ackme 17:7268f365676b 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
dan_ackme 17:7268f365676b 26 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
dan_ackme 17:7268f365676b 27 * OF SUCH DAMAGE.
dan_ackme 17:7268f365676b 28 */
dan_ackme 17:7268f365676b 29
dan_ackme 17:7268f365676b 30
dan_ackme 17:7268f365676b 31 #include "types/Socket/Socket.h"
dan_ackme 17:7268f365676b 32 #include "common.h"
dan_ackme 17:7268f365676b 33
dan_ackme 17:7268f365676b 34
dan_ackme 17:7268f365676b 35
dan_ackme 17:7268f365676b 36
dan_ackme 17:7268f365676b 37 /*************************************************************************************************/
dan_ackme 17:7268f365676b 38 Socket::Socket() : _blocking(true), _timeout(1500)
dan_ackme 17:7268f365676b 39 {
dan_ackme 17:7268f365676b 40 }
dan_ackme 17:7268f365676b 41
dan_ackme 17:7268f365676b 42 /*************************************************************************************************/
dan_ackme 17:7268f365676b 43 Socket::Socket(int rxBufferLen, void *rxBuffer, int txBufferLen, void *txBuffer) :
dan_ackme 17:7268f365676b 44 _blocking(true), _timeout(1500), socket(rxBufferLen, rxBuffer, txBufferLen, txBuffer)
dan_ackme 17:7268f365676b 45 {
dan_ackme 17:7268f365676b 46
dan_ackme 17:7268f365676b 47 }
dan_ackme 17:7268f365676b 48
dan_ackme 17:7268f365676b 49 /*************************************************************************************************/
dan_ackme 17:7268f365676b 50 Socket::~Socket()
dan_ackme 17:7268f365676b 51 {
dan_ackme 17:7268f365676b 52 close(true);
dan_ackme 17:7268f365676b 53 }
dan_ackme 17:7268f365676b 54
dan_ackme 17:7268f365676b 55 /*************************************************************************************************/
dan_ackme 17:7268f365676b 56 void Socket::set_blocking(bool blocking, unsigned int timeout)
dan_ackme 17:7268f365676b 57 {
dan_ackme 17:7268f365676b 58 _blocking = blocking;
dan_ackme 17:7268f365676b 59 _timeout = timeout;
dan_ackme 17:7268f365676b 60 }
dan_ackme 17:7268f365676b 61
dan_ackme 17:7268f365676b 62 /*************************************************************************************************/
dan_ackme 17:7268f365676b 63 int Socket::set_option(int level, int optname, const void *optval, socklen_t optlen)
dan_ackme 17:7268f365676b 64 {
dan_ackme 17:7268f365676b 65 return -1;
dan_ackme 17:7268f365676b 66 }
dan_ackme 17:7268f365676b 67
dan_ackme 17:7268f365676b 68 /*************************************************************************************************/
dan_ackme 17:7268f365676b 69 int Socket::get_option(int level, int optname, void *optval, socklen_t *optlen)
dan_ackme 17:7268f365676b 70 {
dan_ackme 17:7268f365676b 71 return -1;
dan_ackme 17:7268f365676b 72 }
dan_ackme 17:7268f365676b 73
dan_ackme 17:7268f365676b 74 /*************************************************************************************************/
dan_ackme 17:7268f365676b 75 int Socket::close(bool shutdown)
dan_ackme 17:7268f365676b 76 {
dan_ackme 17:7268f365676b 77 return (socket.close() == WICONNECT_SUCCESS) ? 0 : -1;
dan_ackme 17:7268f365676b 78 }
dan_ackme 17:7268f365676b 79
dan_ackme 17:7268f365676b 80