]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/http/server/connection_manager.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / http / server / connection_manager.cpp
CommitLineData
7c673cae
FG
1//
2// connection_manager.cpp
3// ~~~~~~~~~~~~~~~~~~~~~~
4//
b32b8144 5// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11#include "connection_manager.hpp"
12#include <algorithm>
13#include <boost/bind.hpp>
14
15namespace http {
16namespace server {
17
18void connection_manager::start(connection_ptr c)
19{
20 connections_.insert(c);
21 c->start();
22}
23
24void connection_manager::stop(connection_ptr c)
25{
26 connections_.erase(c);
27 c->stop();
28}
29
30void connection_manager::stop_all()
31{
32 std::for_each(connections_.begin(), connections_.end(),
33 boost::bind(&connection::stop, _1));
34 connections_.clear();
35}
36
37} // namespace server
38} // namespace http