summaryrefslogtreecommitdiff
path: root/libs/asio/example/cpp03/http/server2
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2015-04-08 03:09:47 +0000
committer <>2015-05-05 14:37:32 +0000
commitf2541bb90af059680aa7036f315f052175999355 (patch)
treea5b214744b256f07e1dc2bd7273035a7808c659f /libs/asio/example/cpp03/http/server2
parented232fdd34968697a68783b3195b1da4226915b5 (diff)
downloadboost-tarball-master.tar.gz
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_58_0.tar.bz2.HEADboost_1_58_0master
Diffstat (limited to 'libs/asio/example/cpp03/http/server2')
-rw-r--r--libs/asio/example/cpp03/http/server2/Jamfile2
-rw-r--r--libs/asio/example/cpp03/http/server2/Jamfile.v22
-rw-r--r--libs/asio/example/cpp03/http/server2/connection.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/connection.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/header.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/io_service_pool.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/io_service_pool.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/main.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/mime_types.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/mime_types.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/reply.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/reply.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/request.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/request_handler.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/request_handler.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/request_parser.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/request_parser.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/server.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server2/server.hpp2
19 files changed, 19 insertions, 19 deletions
diff --git a/libs/asio/example/cpp03/http/server2/Jamfile b/libs/asio/example/cpp03/http/server2/Jamfile
index fbebf328e..d979d40fe 100644
--- a/libs/asio/example/cpp03/http/server2/Jamfile
+++ b/libs/asio/example/cpp03/http/server2/Jamfile
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+# Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/Jamfile.v2 b/libs/asio/example/cpp03/http/server2/Jamfile.v2
index 9a6a5f9c1..1a5a1fef3 100644
--- a/libs/asio/example/cpp03/http/server2/Jamfile.v2
+++ b/libs/asio/example/cpp03/http/server2/Jamfile.v2
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+# Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/connection.cpp b/libs/asio/example/cpp03/http/server2/connection.cpp
index 3b1d03637..bf7f3cad0 100644
--- a/libs/asio/example/cpp03/http/server2/connection.cpp
+++ b/libs/asio/example/cpp03/http/server2/connection.cpp
@@ -2,7 +2,7 @@
// connection.cpp
// ~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/connection.hpp b/libs/asio/example/cpp03/http/server2/connection.hpp
index 2a0b3413a..75f4fee30 100644
--- a/libs/asio/example/cpp03/http/server2/connection.hpp
+++ b/libs/asio/example/cpp03/http/server2/connection.hpp
@@ -2,7 +2,7 @@
// connection.hpp
// ~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/header.hpp b/libs/asio/example/cpp03/http/server2/header.hpp
index 6e84adecb..b0bde07a4 100644
--- a/libs/asio/example/cpp03/http/server2/header.hpp
+++ b/libs/asio/example/cpp03/http/server2/header.hpp
@@ -2,7 +2,7 @@
// header.hpp
// ~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/io_service_pool.cpp b/libs/asio/example/cpp03/http/server2/io_service_pool.cpp
index 4654ed63b..a4a9c02fc 100644
--- a/libs/asio/example/cpp03/http/server2/io_service_pool.cpp
+++ b/libs/asio/example/cpp03/http/server2/io_service_pool.cpp
@@ -2,7 +2,7 @@
// io_service_pool.cpp
// ~~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/io_service_pool.hpp b/libs/asio/example/cpp03/http/server2/io_service_pool.hpp
index 7722693a5..b714f5302 100644
--- a/libs/asio/example/cpp03/http/server2/io_service_pool.hpp
+++ b/libs/asio/example/cpp03/http/server2/io_service_pool.hpp
@@ -2,7 +2,7 @@
// io_service_pool.hpp
// ~~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/main.cpp b/libs/asio/example/cpp03/http/server2/main.cpp
index 49db83aff..aff4b192b 100644
--- a/libs/asio/example/cpp03/http/server2/main.cpp
+++ b/libs/asio/example/cpp03/http/server2/main.cpp
@@ -2,7 +2,7 @@
// main.cpp
// ~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/mime_types.cpp b/libs/asio/example/cpp03/http/server2/mime_types.cpp
index a08f7ec08..11a47a688 100644
--- a/libs/asio/example/cpp03/http/server2/mime_types.cpp
+++ b/libs/asio/example/cpp03/http/server2/mime_types.cpp
@@ -2,7 +2,7 @@
// mime_types.cpp
// ~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/mime_types.hpp b/libs/asio/example/cpp03/http/server2/mime_types.hpp
index 3277c8437..e33c0e5c7 100644
--- a/libs/asio/example/cpp03/http/server2/mime_types.hpp
+++ b/libs/asio/example/cpp03/http/server2/mime_types.hpp
@@ -2,7 +2,7 @@
// mime_types.hpp
// ~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/reply.cpp b/libs/asio/example/cpp03/http/server2/reply.cpp
index 17bfb4d44..626808bc0 100644
--- a/libs/asio/example/cpp03/http/server2/reply.cpp
+++ b/libs/asio/example/cpp03/http/server2/reply.cpp
@@ -2,7 +2,7 @@
// reply.cpp
// ~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/reply.hpp b/libs/asio/example/cpp03/http/server2/reply.hpp
index 7ae1151b1..acb1534b9 100644
--- a/libs/asio/example/cpp03/http/server2/reply.hpp
+++ b/libs/asio/example/cpp03/http/server2/reply.hpp
@@ -2,7 +2,7 @@
// reply.hpp
// ~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/request.hpp b/libs/asio/example/cpp03/http/server2/request.hpp
index b17b650fb..9e14fd2ac 100644
--- a/libs/asio/example/cpp03/http/server2/request.hpp
+++ b/libs/asio/example/cpp03/http/server2/request.hpp
@@ -2,7 +2,7 @@
// request.hpp
// ~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/request_handler.cpp b/libs/asio/example/cpp03/http/server2/request_handler.cpp
index 055d414d2..62a638c5a 100644
--- a/libs/asio/example/cpp03/http/server2/request_handler.cpp
+++ b/libs/asio/example/cpp03/http/server2/request_handler.cpp
@@ -2,7 +2,7 @@
// request_handler.cpp
// ~~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/request_handler.hpp b/libs/asio/example/cpp03/http/server2/request_handler.hpp
index b48ca3a51..3addf7bdf 100644
--- a/libs/asio/example/cpp03/http/server2/request_handler.hpp
+++ b/libs/asio/example/cpp03/http/server2/request_handler.hpp
@@ -2,7 +2,7 @@
// request_handler.hpp
// ~~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/request_parser.cpp b/libs/asio/example/cpp03/http/server2/request_parser.cpp
index d9b8b7a4b..d31e5723c 100644
--- a/libs/asio/example/cpp03/http/server2/request_parser.cpp
+++ b/libs/asio/example/cpp03/http/server2/request_parser.cpp
@@ -2,7 +2,7 @@
// request_parser.cpp
// ~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/request_parser.hpp b/libs/asio/example/cpp03/http/server2/request_parser.hpp
index f6f081990..042632674 100644
--- a/libs/asio/example/cpp03/http/server2/request_parser.hpp
+++ b/libs/asio/example/cpp03/http/server2/request_parser.hpp
@@ -2,7 +2,7 @@
// request_parser.hpp
// ~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/server.cpp b/libs/asio/example/cpp03/http/server2/server.cpp
index bb96abe25..bacc9218b 100644
--- a/libs/asio/example/cpp03/http/server2/server.cpp
+++ b/libs/asio/example/cpp03/http/server2/server.cpp
@@ -2,7 +2,7 @@
// server.cpp
// ~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)
diff --git a/libs/asio/example/cpp03/http/server2/server.hpp b/libs/asio/example/cpp03/http/server2/server.hpp
index 454d51d61..3b4a1d95f 100644
--- a/libs/asio/example/cpp03/http/server2/server.hpp
+++ b/libs/asio/example/cpp03/http/server2/server.hpp
@@ -2,7 +2,7 @@
// server.hpp
// ~~~~~~~~~~
//
-// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2015 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)