victor qiu / Mbed OS SimpleNTP

Fork of SimpleNTP by Akinori Hashimoto

Committer:
victorqiu2
Date:
Tue Aug 01 01:22:01 2017 +0000
Revision:
2:68ae27667d82
A

Who changed what in which revision?

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