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:
Mon Feb 23 20:30:18 2015 -0800
Revision:
39:a963f69cb2de
added httpAcceptWebsocket API

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dan_ackme 39:a963f69cb2de 1 /**
dan_ackme 39:a963f69cb2de 2 * ACKme WiConnect Host Library is licensed under the BSD licence:
dan_ackme 39:a963f69cb2de 3 *
dan_ackme 39:a963f69cb2de 4 * Copyright (c)2014 ACKme Networks.
dan_ackme 39:a963f69cb2de 5 * All rights reserved.
dan_ackme 39:a963f69cb2de 6 *
dan_ackme 39:a963f69cb2de 7 * Redistribution and use in source and binary forms, with or without modification,
dan_ackme 39:a963f69cb2de 8 * are permitted provided that the following conditions are met:
dan_ackme 39:a963f69cb2de 9 *
dan_ackme 39:a963f69cb2de 10 * 1. Redistributions of source code must retain the above copyright notice,
dan_ackme 39:a963f69cb2de 11 * this list of conditions and the following disclaimer.
dan_ackme 39:a963f69cb2de 12 * 2. Redistributions in binary form must reproduce the above copyright notice,
dan_ackme 39:a963f69cb2de 13 * this list of conditions and the following disclaimer in the documentation
dan_ackme 39:a963f69cb2de 14 * and/or other materials provided with the distribution.
dan_ackme 39:a963f69cb2de 15 * 3. The name of the author may not be used to endorse or promote products
dan_ackme 39:a963f69cb2de 16 * derived from this software without specific prior written permission.
dan_ackme 39:a963f69cb2de 17 *
dan_ackme 39:a963f69cb2de 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS AND ANY EXPRESS OR IMPLIED
dan_ackme 39:a963f69cb2de 19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
dan_ackme 39:a963f69cb2de 20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
dan_ackme 39:a963f69cb2de 21 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
dan_ackme 39:a963f69cb2de 22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
dan_ackme 39:a963f69cb2de 23 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
dan_ackme 39:a963f69cb2de 24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
dan_ackme 39:a963f69cb2de 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
dan_ackme 39:a963f69cb2de 26 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
dan_ackme 39:a963f69cb2de 27 * OF SUCH DAMAGE.
dan_ackme 39:a963f69cb2de 28 */
dan_ackme 39:a963f69cb2de 29
dan_ackme 39:a963f69cb2de 30 #include "Wiconnect.h"
dan_ackme 39:a963f69cb2de 31 #include "api/types/Socket/TCPSocketServer.h"
dan_ackme 39:a963f69cb2de 32
dan_ackme 39:a963f69cb2de 33
dan_ackme 39:a963f69cb2de 34
dan_ackme 39:a963f69cb2de 35 /*************************************************************************************************/
dan_ackme 39:a963f69cb2de 36 TCPSocketServer::TCPSocketServer()
dan_ackme 39:a963f69cb2de 37 {
dan_ackme 39:a963f69cb2de 38 }
dan_ackme 39:a963f69cb2de 39
dan_ackme 39:a963f69cb2de 40
dan_ackme 39:a963f69cb2de 41 /*************************************************************************************************/
dan_ackme 39:a963f69cb2de 42 int TCPSocketServer::bind(int port)
dan_ackme 39:a963f69cb2de 43 {
dan_ackme 39:a963f69cb2de 44 return -1;
dan_ackme 39:a963f69cb2de 45 }
dan_ackme 39:a963f69cb2de 46
dan_ackme 39:a963f69cb2de 47 /*************************************************************************************************/
dan_ackme 39:a963f69cb2de 48 int TCPSocketServer::listen(int max)
dan_ackme 39:a963f69cb2de 49 {
dan_ackme 39:a963f69cb2de 50 return -1;
dan_ackme 39:a963f69cb2de 51 }
dan_ackme 39:a963f69cb2de 52
dan_ackme 39:a963f69cb2de 53 /*************************************************************************************************/
dan_ackme 39:a963f69cb2de 54 int TCPSocketServer::accept(TCPSocketConnection& connection)
dan_ackme 39:a963f69cb2de 55 {
dan_ackme 39:a963f69cb2de 56 return -1;
dan_ackme 39:a963f69cb2de 57 }