Ethernetwebsoc

Dependencies:   C12832_lcd LM75B WebSocketClient mbed-rtos mbed Socket lwip-eth lwip-sys lwip

Committer:
GordonSin
Date:
Fri May 31 04:09:54 2013 +0000
Revision:
0:0ed2a7c7190c
31/5/2013;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GordonSin 0:0ed2a7c7190c 1 /* Copyright (C) 2012 mbed.org, MIT License
GordonSin 0:0ed2a7c7190c 2 *
GordonSin 0:0ed2a7c7190c 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
GordonSin 0:0ed2a7c7190c 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
GordonSin 0:0ed2a7c7190c 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
GordonSin 0:0ed2a7c7190c 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
GordonSin 0:0ed2a7c7190c 7 * furnished to do so, subject to the following conditions:
GordonSin 0:0ed2a7c7190c 8 *
GordonSin 0:0ed2a7c7190c 9 * The above copyright notice and this permission notice shall be included in all copies or
GordonSin 0:0ed2a7c7190c 10 * substantial portions of the Software.
GordonSin 0:0ed2a7c7190c 11 *
GordonSin 0:0ed2a7c7190c 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
GordonSin 0:0ed2a7c7190c 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
GordonSin 0:0ed2a7c7190c 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
GordonSin 0:0ed2a7c7190c 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
GordonSin 0:0ed2a7c7190c 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
GordonSin 0:0ed2a7c7190c 17 */
GordonSin 0:0ed2a7c7190c 18 #ifndef TCPSOCKETSERVER_H
GordonSin 0:0ed2a7c7190c 19 #define TCPSOCKETSERVER_H
GordonSin 0:0ed2a7c7190c 20
GordonSin 0:0ed2a7c7190c 21 #include "Socket/Socket.h"
GordonSin 0:0ed2a7c7190c 22 #include "TCPSocketConnection.h"
GordonSin 0:0ed2a7c7190c 23
GordonSin 0:0ed2a7c7190c 24 /** TCP Server.
GordonSin 0:0ed2a7c7190c 25 */
GordonSin 0:0ed2a7c7190c 26 class TCPSocketServer : public Socket {
GordonSin 0:0ed2a7c7190c 27 public:
GordonSin 0:0ed2a7c7190c 28 /** Instantiate a TCP Server.
GordonSin 0:0ed2a7c7190c 29 */
GordonSin 0:0ed2a7c7190c 30 TCPSocketServer();
GordonSin 0:0ed2a7c7190c 31
GordonSin 0:0ed2a7c7190c 32 /** Bind a socket to a specific port.
GordonSin 0:0ed2a7c7190c 33 \param port The port to listen for incoming connections on.
GordonSin 0:0ed2a7c7190c 34 \return 0 on success, -1 on failure.
GordonSin 0:0ed2a7c7190c 35 */
GordonSin 0:0ed2a7c7190c 36 int bind(int port);
GordonSin 0:0ed2a7c7190c 37
GordonSin 0:0ed2a7c7190c 38 /** Start listening for incoming connections.
GordonSin 0:0ed2a7c7190c 39 \param backlog number of pending connections that can be queued up at any
GordonSin 0:0ed2a7c7190c 40 one time [Default: 1].
GordonSin 0:0ed2a7c7190c 41 \return 0 on success, -1 on failure.
GordonSin 0:0ed2a7c7190c 42 */
GordonSin 0:0ed2a7c7190c 43 int listen(int backlog=1);
GordonSin 0:0ed2a7c7190c 44
GordonSin 0:0ed2a7c7190c 45 /** Accept a new connection.
GordonSin 0:0ed2a7c7190c 46 \param connection A TCPSocketConnection instance that will handle the incoming connection.
GordonSin 0:0ed2a7c7190c 47 \return 0 on success, -1 on failure.
GordonSin 0:0ed2a7c7190c 48 */
GordonSin 0:0ed2a7c7190c 49 int accept(TCPSocketConnection& connection);
GordonSin 0:0ed2a7c7190c 50 };
GordonSin 0:0ed2a7c7190c 51
GordonSin 0:0ed2a7c7190c 52 #endif