2014-09-21 11:28:06 +02:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2 C Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
// We wrote this code based on the original code which has the
|
|
|
|
// following license:
|
|
|
|
//
|
|
|
|
// server.hpp
|
|
|
|
// ~~~~~~~~~~
|
|
|
|
//
|
|
|
|
// Copyright (c) 2003-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
|
2015-03-05 13:42:48 +01:00
|
|
|
#ifndef ASIO_SERVER_H
|
|
|
|
#define ASIO_SERVER_H
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
#include "nghttp2_config.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <memory>
|
2015-03-03 18:43:13 +01:00
|
|
|
|
2014-09-21 11:28:06 +02:00
|
|
|
#include <boost/noncopyable.hpp>
|
2017-02-03 22:56:23 +01:00
|
|
|
#include <boost/asio/io_service.hpp>
|
2014-09-21 11:28:06 +02:00
|
|
|
|
2015-03-03 18:43:13 +01:00
|
|
|
#include <nghttp2/asio_http2_server.h>
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
|
|
|
|
namespace asio_http2 {
|
|
|
|
|
|
|
|
namespace server {
|
|
|
|
|
2015-03-04 17:52:12 +01:00
|
|
|
class serve_mux;
|
|
|
|
|
2015-03-06 15:20:08 +01:00
|
|
|
using boost::asio::ip::tcp;
|
|
|
|
|
|
|
|
using ssl_socket = boost::asio::ssl::stream<tcp::socket>;
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
class server : private boost::noncopyable {
|
2014-09-21 11:28:06 +02:00
|
|
|
public:
|
2017-02-03 22:56:23 +01:00
|
|
|
explicit server(boost::asio::io_service &service,
|
2015-12-21 16:33:12 +01:00
|
|
|
const boost::posix_time::time_duration &tls_handshake_timeout,
|
|
|
|
const boost::posix_time::time_duration &read_timeout);
|
2014-09-21 11:28:06 +02:00
|
|
|
|
2015-03-06 15:20:08 +01:00
|
|
|
boost::system::error_code
|
|
|
|
listen_and_serve(boost::system::error_code &ec,
|
|
|
|
boost::asio::ssl::context *tls_context,
|
|
|
|
const std::string &address, const std::string &port,
|
2015-04-22 11:51:28 +02:00
|
|
|
int backlog, serve_mux &mux, bool asynchronous = false);
|
|
|
|
void join();
|
|
|
|
void stop();
|
2014-09-21 11:28:06 +02:00
|
|
|
|
2015-12-08 15:47:04 +01:00
|
|
|
/// Get access to all io_service objects.
|
2015-12-20 04:48:39 +01:00
|
|
|
const std::vector<std::shared_ptr<boost::asio::io_service>> &
|
2015-12-25 13:06:25 +01:00
|
|
|
io_services() const;
|
2015-12-08 15:47:04 +01:00
|
|
|
|
2014-09-21 11:28:06 +02:00
|
|
|
private:
|
|
|
|
/// Initiate an asynchronous accept operation.
|
2015-03-06 15:20:08 +01:00
|
|
|
void start_accept(tcp::acceptor &acceptor, serve_mux &mux);
|
|
|
|
/// Same as above but with tls_context
|
|
|
|
void start_accept(boost::asio::ssl::context &tls_context,
|
|
|
|
tcp::acceptor &acceptor, serve_mux &mux);
|
|
|
|
|
|
|
|
/// Resolves address and bind socket to the resolved addresses.
|
|
|
|
boost::system::error_code bind_and_listen(boost::system::error_code &ec,
|
|
|
|
const std::string &address,
|
|
|
|
const std::string &port,
|
|
|
|
int backlog);
|
2017-02-03 22:56:23 +01:00
|
|
|
boost::asio::io_service &service_;
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
/// Acceptor used to listen for incoming connections.
|
2015-03-06 15:20:08 +01:00
|
|
|
std::vector<tcp::acceptor> acceptors_;
|
2014-09-21 11:28:06 +02:00
|
|
|
|
|
|
|
std::unique_ptr<boost::asio::ssl::context> ssl_ctx_;
|
2015-12-21 16:33:12 +01:00
|
|
|
|
|
|
|
boost::posix_time::time_duration tls_handshake_timeout_;
|
|
|
|
boost::posix_time::time_duration read_timeout_;
|
2014-09-21 11:28:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace server
|
|
|
|
|
|
|
|
} // namespace asio_http2
|
|
|
|
|
|
|
|
} // namespace nghttp2
|
|
|
|
|
2015-03-05 13:42:48 +01:00
|
|
|
#endif // ASIO_SERVER_H
|