summaryrefslogtreecommitdiff
path: root/libs/asio/example/cpp03/http/server
diff options
context:
space:
mode:
Diffstat (limited to 'libs/asio/example/cpp03/http/server')
-rw-r--r--libs/asio/example/cpp03/http/server/Jamfile2
-rw-r--r--libs/asio/example/cpp03/http/server/Jamfile.v22
-rw-r--r--libs/asio/example/cpp03/http/server/connection.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/connection.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/connection_manager.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/connection_manager.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/header.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/main.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/mime_types.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/mime_types.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/reply.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/reply.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/request.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/request_handler.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/request_handler.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/request_parser.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/request_parser.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server/server.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server/server.hpp2
19 files changed, 19 insertions, 19 deletions
diff --git a/libs/asio/example/cpp03/http/server/Jamfile b/libs/asio/example/cpp03/http/server/Jamfile
index 38d596bc2..ac5933918 100644
--- a/libs/asio/example/cpp03/http/server/Jamfile
+++ b/libs/asio/example/cpp03/http/server/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/server/Jamfile.v2 b/libs/asio/example/cpp03/http/server/Jamfile.v2
index 0ebe0e2d2..a841031c2 100644
--- a/libs/asio/example/cpp03/http/server/Jamfile.v2
+++ b/libs/asio/example/cpp03/http/server/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/server/connection.cpp b/libs/asio/example/cpp03/http/server/connection.cpp
index a780eab25..cf1d4a3b4 100644
--- a/libs/asio/example/cpp03/http/server/connection.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/connection.hpp b/libs/asio/example/cpp03/http/server/connection.hpp
index bd8a27302..88ba0db8d 100644
--- a/libs/asio/example/cpp03/http/server/connection.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/connection_manager.cpp b/libs/asio/example/cpp03/http/server/connection_manager.cpp
index bafad4a56..3b0bfb193 100644
--- a/libs/asio/example/cpp03/http/server/connection_manager.cpp
+++ b/libs/asio/example/cpp03/http/server/connection_manager.cpp
@@ -2,7 +2,7 @@
// connection_manager.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/server/connection_manager.hpp b/libs/asio/example/cpp03/http/server/connection_manager.hpp
index bab867d55..086801450 100644
--- a/libs/asio/example/cpp03/http/server/connection_manager.hpp
+++ b/libs/asio/example/cpp03/http/server/connection_manager.hpp
@@ -2,7 +2,7 @@
// connection_manager.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/server/header.hpp b/libs/asio/example/cpp03/http/server/header.hpp
index b2375afea..524097edc 100644
--- a/libs/asio/example/cpp03/http/server/header.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/main.cpp b/libs/asio/example/cpp03/http/server/main.cpp
index ba52be2a4..a9d14bcb5 100644
--- a/libs/asio/example/cpp03/http/server/main.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/mime_types.cpp b/libs/asio/example/cpp03/http/server/mime_types.cpp
index 2ea2c2662..05ee50c08 100644
--- a/libs/asio/example/cpp03/http/server/mime_types.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/mime_types.hpp b/libs/asio/example/cpp03/http/server/mime_types.hpp
index 21f737e58..e5881f2e8 100644
--- a/libs/asio/example/cpp03/http/server/mime_types.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/reply.cpp b/libs/asio/example/cpp03/http/server/reply.cpp
index 318a4705f..e9d06010b 100644
--- a/libs/asio/example/cpp03/http/server/reply.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/reply.hpp b/libs/asio/example/cpp03/http/server/reply.hpp
index 9757df493..f39112195 100644
--- a/libs/asio/example/cpp03/http/server/reply.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/request.hpp b/libs/asio/example/cpp03/http/server/request.hpp
index 3e2250186..2a38f39e4 100644
--- a/libs/asio/example/cpp03/http/server/request.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/request_handler.cpp b/libs/asio/example/cpp03/http/server/request_handler.cpp
index 7d0452bd3..e9cf1b095 100644
--- a/libs/asio/example/cpp03/http/server/request_handler.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/request_handler.hpp b/libs/asio/example/cpp03/http/server/request_handler.hpp
index fdc5b08ec..40f187e03 100644
--- a/libs/asio/example/cpp03/http/server/request_handler.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/request_parser.cpp b/libs/asio/example/cpp03/http/server/request_parser.cpp
index af2d8513d..94598b816 100644
--- a/libs/asio/example/cpp03/http/server/request_parser.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/request_parser.hpp b/libs/asio/example/cpp03/http/server/request_parser.hpp
index 59f14a237..914677989 100644
--- a/libs/asio/example/cpp03/http/server/request_parser.hpp
+++ b/libs/asio/example/cpp03/http/server/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/server/server.cpp b/libs/asio/example/cpp03/http/server/server.cpp
index 7989db5d8..e93cefa65 100644
--- a/libs/asio/example/cpp03/http/server/server.cpp
+++ b/libs/asio/example/cpp03/http/server/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/server/server.hpp b/libs/asio/example/cpp03/http/server/server.hpp
index 750c65934..27eaede19 100644
--- a/libs/asio/example/cpp03/http/server/server.hpp
+++ b/libs/asio/example/cpp03/http/server/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)