summaryrefslogtreecommitdiff
path: root/libs/asio/example/cpp03/http/server4
diff options
context:
space:
mode:
Diffstat (limited to 'libs/asio/example/cpp03/http/server4')
-rw-r--r--libs/asio/example/cpp03/http/server4/Jamfile2
-rw-r--r--libs/asio/example/cpp03/http/server4/Jamfile.v22
-rw-r--r--libs/asio/example/cpp03/http/server4/file_handler.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/file_handler.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/header.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/main.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/mime_types.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/mime_types.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/reply.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/reply.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/request.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/request_parser.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/request_parser.hpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/server.cpp2
-rw-r--r--libs/asio/example/cpp03/http/server4/server.hpp2
15 files changed, 15 insertions, 15 deletions
diff --git a/libs/asio/example/cpp03/http/server4/Jamfile b/libs/asio/example/cpp03/http/server4/Jamfile
index fbc344b62..552a551b5 100644
--- a/libs/asio/example/cpp03/http/server4/Jamfile
+++ b/libs/asio/example/cpp03/http/server4/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/server4/Jamfile.v2 b/libs/asio/example/cpp03/http/server4/Jamfile.v2
index 39f04956d..d9a03811c 100644
--- a/libs/asio/example/cpp03/http/server4/Jamfile.v2
+++ b/libs/asio/example/cpp03/http/server4/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/server4/file_handler.cpp b/libs/asio/example/cpp03/http/server4/file_handler.cpp
index cfcaa1c7a..ece057e4f 100644
--- a/libs/asio/example/cpp03/http/server4/file_handler.cpp
+++ b/libs/asio/example/cpp03/http/server4/file_handler.cpp
@@ -2,7 +2,7 @@
// file_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/server4/file_handler.hpp b/libs/asio/example/cpp03/http/server4/file_handler.hpp
index 6d3266210..c4f3da21b 100644
--- a/libs/asio/example/cpp03/http/server4/file_handler.hpp
+++ b/libs/asio/example/cpp03/http/server4/file_handler.hpp
@@ -2,7 +2,7 @@
// file_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/server4/header.hpp b/libs/asio/example/cpp03/http/server4/header.hpp
index 2aa408e5f..acf62906f 100644
--- a/libs/asio/example/cpp03/http/server4/header.hpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/main.cpp b/libs/asio/example/cpp03/http/server4/main.cpp
index 1befe57d8..11c54ef22 100644
--- a/libs/asio/example/cpp03/http/server4/main.cpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/mime_types.cpp b/libs/asio/example/cpp03/http/server4/mime_types.cpp
index 0fea975c2..85b9ec519 100644
--- a/libs/asio/example/cpp03/http/server4/mime_types.cpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/mime_types.hpp b/libs/asio/example/cpp03/http/server4/mime_types.hpp
index d3238f3e1..b2c3b08b7 100644
--- a/libs/asio/example/cpp03/http/server4/mime_types.hpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/reply.cpp b/libs/asio/example/cpp03/http/server4/reply.cpp
index 0c61c35ca..f976b2810 100644
--- a/libs/asio/example/cpp03/http/server4/reply.cpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/reply.hpp b/libs/asio/example/cpp03/http/server4/reply.hpp
index 0c25da7b3..4cca2a45f 100644
--- a/libs/asio/example/cpp03/http/server4/reply.hpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/request.hpp b/libs/asio/example/cpp03/http/server4/request.hpp
index 481a00393..bf4ffe10d 100644
--- a/libs/asio/example/cpp03/http/server4/request.hpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/request_parser.cpp b/libs/asio/example/cpp03/http/server4/request_parser.cpp
index 1fa468d56..50a35d50b 100644
--- a/libs/asio/example/cpp03/http/server4/request_parser.cpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/request_parser.hpp b/libs/asio/example/cpp03/http/server4/request_parser.hpp
index 0485cc968..981b3ad11 100644
--- a/libs/asio/example/cpp03/http/server4/request_parser.hpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/server.cpp b/libs/asio/example/cpp03/http/server4/server.cpp
index d315c7a5c..3006a32ca 100644
--- a/libs/asio/example/cpp03/http/server4/server.cpp
+++ b/libs/asio/example/cpp03/http/server4/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/server4/server.hpp b/libs/asio/example/cpp03/http/server4/server.hpp
index dd68bb422..b8d428ebc 100644
--- a/libs/asio/example/cpp03/http/server4/server.hpp
+++ b/libs/asio/example/cpp03/http/server4/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)