From 4100fc3ce799de8bcd9a808125717484f9671f38 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Tue, 4 Nov 2014 07:31:24 -0500 Subject: [PATCH] normalize copyright dates and prep release version --- COPYING | 2 +- Doxyfile | 2 +- changelog.md | 6 +++--- examples/testee_server/testee_server.cpp | 2 +- readme.md | 2 +- roadmap.md | 19 +++++++++---------- test/connection/connection_tu2.cpp | 2 +- test/connection/connection_tu2.hpp | 2 +- test/endpoint/endpoint.cpp | 2 +- test/logger/basic.cpp | 2 +- test/message_buffer/alloc.cpp | 2 +- test/message_buffer/message.cpp | 2 +- .../extension_permessage_compress.cpp | 2 +- test/processors/hybi00.cpp | 2 +- test/processors/hybi07.cpp | 2 +- test/processors/hybi08.cpp | 2 +- test/processors/hybi13.cpp | 2 +- test/random/none.cpp | 2 +- test/random/random_device.cpp | 2 +- test/roles/client.cpp | 2 +- test/roles/server.cpp | 2 +- test/transport/asio/base.cpp | 2 +- test/transport/asio/timers.cpp | 2 +- test/transport/iostream/base.cpp | 2 +- test/transport/iostream/connection.cpp | 2 +- test/transport/iostream/endpoint.cpp | 2 +- test/utility/close.cpp | 2 +- test/utility/uri.cpp | 2 +- websocketpp/client.hpp | 2 +- websocketpp/close.hpp | 2 +- websocketpp/common/chrono.hpp | 2 +- websocketpp/common/connection_hdl.hpp | 2 +- websocketpp/common/functional.hpp | 2 +- websocketpp/common/memory.hpp | 2 +- websocketpp/common/platforms.hpp | 2 +- websocketpp/common/random.hpp | 2 +- websocketpp/common/regex.hpp | 2 +- websocketpp/common/stdint.hpp | 2 +- websocketpp/common/system_error.hpp | 2 +- websocketpp/common/thread.hpp | 2 +- websocketpp/concurrency/basic.hpp | 2 +- websocketpp/config/asio.hpp | 2 +- websocketpp/config/asio_client.hpp | 2 +- websocketpp/config/asio_no_tls.hpp | 2 +- websocketpp/config/asio_no_tls_client.hpp | 2 +- websocketpp/config/core.hpp | 2 +- websocketpp/config/core_client.hpp | 2 +- websocketpp/config/debug.hpp | 2 +- websocketpp/config/debug_asio.hpp | 2 +- websocketpp/config/debug_asio_no_tls.hpp | 2 +- websocketpp/connection_base.hpp | 2 +- websocketpp/endpoint.hpp | 2 +- websocketpp/endpoint_base.hpp | 2 +- websocketpp/error.hpp | 2 +- websocketpp/error_container.hpp | 2 +- websocketpp/extensions/extension.hpp | 2 +- .../permessage_deflate/disabled.hpp | 2 +- .../extensions/permessage_deflate/enabled.hpp | 2 +- websocketpp/frame.hpp | 2 +- websocketpp/http/constants.hpp | 2 +- websocketpp/http/impl/parser.hpp | 2 +- websocketpp/http/impl/request.hpp | 2 +- websocketpp/http/impl/response.hpp | 2 +- websocketpp/http/parser.hpp | 2 +- websocketpp/http/request.hpp | 2 +- websocketpp/http/response.hpp | 2 +- websocketpp/impl/endpoint_impl.hpp | 2 +- websocketpp/impl/utilities_impl.hpp | 2 +- websocketpp/logger/levels.hpp | 2 +- websocketpp/logger/stub.hpp | 2 +- websocketpp/message_buffer/alloc.hpp | 2 +- websocketpp/message_buffer/message.hpp | 2 +- websocketpp/message_buffer/pool.hpp | 2 +- websocketpp/processors/base.hpp | 2 +- websocketpp/processors/hybi00.hpp | 2 +- websocketpp/processors/hybi07.hpp | 2 +- websocketpp/processors/hybi08.hpp | 2 +- websocketpp/processors/hybi13.hpp | 2 +- websocketpp/processors/processor.hpp | 2 +- websocketpp/random/none.hpp | 2 +- websocketpp/random/random_device.hpp | 2 +- websocketpp/roles/client_endpoint.hpp | 2 +- websocketpp/roles/server_endpoint.hpp | 2 +- websocketpp/server.hpp | 2 +- websocketpp/transport/asio/base.hpp | 2 +- websocketpp/transport/base/connection.hpp | 2 +- websocketpp/transport/base/endpoint.hpp | 2 +- websocketpp/transport/iostream/base.hpp | 2 +- websocketpp/transport/iostream/connection.hpp | 2 +- websocketpp/transport/iostream/endpoint.hpp | 2 +- websocketpp/uri.hpp | 2 +- websocketpp/utilities.hpp | 2 +- websocketpp/version.hpp | 6 +++--- 93 files changed, 105 insertions(+), 106 deletions(-) diff --git a/COPYING b/COPYING index 7eeeb8f39f..f8cc5ba1b8 100644 --- a/COPYING +++ b/COPYING @@ -1,6 +1,6 @@ Main Library: -Copyright (c) 2013, Peter Thorson. All rights reserved. +Copyright (c) 2014, Peter Thorson. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/Doxyfile b/Doxyfile index f4a39ae7d4..b37846173a 100644 --- a/Doxyfile +++ b/Doxyfile @@ -33,7 +33,7 @@ PROJECT_NAME = "websocketpp" # if some version control system is used. -PROJECT_NUMBER = "0.4.0-dev" +PROJECT_NUMBER = "0.4.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description diff --git a/changelog.md b/changelog.md index 19cb25aec9..4ab7680772 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,4 @@ -HEAD +0.4.0 - 2014-11-04 - BREAKING API CHANGE: All WebSocket++ methods now throw an exception of type `websocketpp::exception` which derives from `std::exception`. This normalizes all exception types under the standard exception hierarchy and allows @@ -30,8 +30,8 @@ HEAD iostream transport. - Bug: C++11 Chrono support was being incorrectly detected by the `boost_config` header. Thank you Max Dmitrichenko for reporting and a patch. -- Bug: use of `std::put_time` is now guarded by a general 11 flag rather than - a chrono flag. Thank you Max Dmitrichenko for reporting. +- Bug: use of `std::put_time` is now guarded by a unique flag rather than a + chrono library flag. Thank you Max Dmitrichenko for reporting. - Bug: Fixes non-thread safe use of std::localtime. #347 #383 - Compatibility: Adjust usage of std::min to be more compatible with systems that define a min(...) macro. diff --git a/examples/testee_server/testee_server.cpp b/examples/testee_server/testee_server.cpp index 5a00bda596..1c9910e8c9 100644 --- a/examples/testee_server/testee_server.cpp +++ b/examples/testee_server/testee_server.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/readme.md b/readme.md index 34f2300f7b..2afd14e94f 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -WebSocket++ (0.4.0-dev) +WebSocket++ (0.4.0) ========================== WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket diff --git a/roadmap.md b/roadmap.md index ee74655e6a..b35c54ad01 100644 --- a/roadmap.md +++ b/roadmap.md @@ -16,24 +16,23 @@ Complete & Tested: - open_handler - close_handler - echo_server & echo_server_tls - -Implemented, needs more testing -- TLS support - External io_service support +- TLS support +- exception/error handling +- Timeouts +- Subprotocol negotiation +- validate_handler +- Hybi 00/Hixie 76 legacy protocol support +- Outgoing Proxy Support - socket_init_handler - tls_init_handler - tcp_init_handler -- exception/error handling -- Subprotocol negotiation -- Hybi 00/Hixie 76 legacy protocol support + +Ongoing work - Performance tuning -- Outgoing Proxy Support - PowerPC support - Visual Studio / Windows support -- Timeouts - CMake build/install support - -- validate_handler - http_handler Future feature roadmap diff --git a/test/connection/connection_tu2.cpp b/test/connection/connection_tu2.cpp index 376187b5fe..2a1c0163ed 100644 --- a/test/connection/connection_tu2.cpp +++ b/test/connection/connection_tu2.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/connection/connection_tu2.hpp b/test/connection/connection_tu2.hpp index b4e95216da..b54afa1ffc 100644 --- a/test/connection/connection_tu2.hpp +++ b/test/connection/connection_tu2.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/endpoint/endpoint.cpp b/test/endpoint/endpoint.cpp index da3c839ca4..79cbe6290b 100644 --- a/test/endpoint/endpoint.cpp +++ b/test/endpoint/endpoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/logger/basic.cpp b/test/logger/basic.cpp index f955967a29..de51e5ad20 100644 --- a/test/logger/basic.cpp +++ b/test/logger/basic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/message_buffer/alloc.cpp b/test/message_buffer/alloc.cpp index 0bdebfa93f..9f6ba2ab7d 100644 --- a/test/message_buffer/alloc.cpp +++ b/test/message_buffer/alloc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/message_buffer/message.cpp b/test/message_buffer/message.cpp index 5f5eeb710b..1fb12d319e 100644 --- a/test/message_buffer/message.cpp +++ b/test/message_buffer/message.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/processors/extension_permessage_compress.cpp b/test/processors/extension_permessage_compress.cpp index 11ba10198e..9b84c995a6 100644 --- a/test/processors/extension_permessage_compress.cpp +++ b/test/processors/extension_permessage_compress.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/processors/hybi00.cpp b/test/processors/hybi00.cpp index 0b1030a389..b201e8ac31 100644 --- a/test/processors/hybi00.cpp +++ b/test/processors/hybi00.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/processors/hybi07.cpp b/test/processors/hybi07.cpp index 2babc96e59..7898f35d50 100644 --- a/test/processors/hybi07.cpp +++ b/test/processors/hybi07.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/processors/hybi08.cpp b/test/processors/hybi08.cpp index 03e38dcffa..b16b68e1ae 100644 --- a/test/processors/hybi08.cpp +++ b/test/processors/hybi08.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/processors/hybi13.cpp b/test/processors/hybi13.cpp index 32685742f9..d16ba1797b 100644 --- a/test/processors/hybi13.cpp +++ b/test/processors/hybi13.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/random/none.cpp b/test/random/none.cpp index 8102733445..b27b23924e 100644 --- a/test/random/none.cpp +++ b/test/random/none.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/random/random_device.cpp b/test/random/random_device.cpp index 4f6690d87e..b3ce3a5dd7 100644 --- a/test/random/random_device.cpp +++ b/test/random/random_device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/roles/client.cpp b/test/roles/client.cpp index e8014d0a74..9aab3eeb63 100644 --- a/test/roles/client.cpp +++ b/test/roles/client.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/roles/server.cpp b/test/roles/server.cpp index 5613da9ef8..cbe8607371 100644 --- a/test/roles/server.cpp +++ b/test/roles/server.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/transport/asio/base.cpp b/test/transport/asio/base.cpp index 8d2914dd29..e9f96ae322 100644 --- a/test/transport/asio/base.cpp +++ b/test/transport/asio/base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/transport/asio/timers.cpp b/test/transport/asio/timers.cpp index ad97cd0e4b..fc17dabb4b 100644 --- a/test/transport/asio/timers.cpp +++ b/test/transport/asio/timers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/transport/iostream/base.cpp b/test/transport/iostream/base.cpp index 2bbac6bb07..a7eefc2110 100644 --- a/test/transport/iostream/base.cpp +++ b/test/transport/iostream/base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/transport/iostream/connection.cpp b/test/transport/iostream/connection.cpp index d2d125d999..89ae9a94a5 100644 --- a/test/transport/iostream/connection.cpp +++ b/test/transport/iostream/connection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/transport/iostream/endpoint.cpp b/test/transport/iostream/endpoint.cpp index bfa24c674f..ded9967884 100644 --- a/test/transport/iostream/endpoint.cpp +++ b/test/transport/iostream/endpoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/utility/close.cpp b/test/utility/close.cpp index 274cdbbf1a..191f2632d3 100644 --- a/test/utility/close.cpp +++ b/test/utility/close.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/test/utility/uri.cpp b/test/utility/uri.cpp index 922a91b9dd..2b0c886396 100644 --- a/test/utility/uri.cpp +++ b/test/utility/uri.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/client.hpp b/websocketpp/client.hpp index 45268be387..8782d7e4a6 100644 --- a/websocketpp/client.hpp +++ b/websocketpp/client.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/close.hpp b/websocketpp/close.hpp index 5101e44a29..53ad4f1c6c 100644 --- a/websocketpp/close.hpp +++ b/websocketpp/close.hpp @@ -1,6 +1,6 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/chrono.hpp b/websocketpp/common/chrono.hpp index 731d7703ae..c536a3652c 100644 --- a/websocketpp/common/chrono.hpp +++ b/websocketpp/common/chrono.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/connection_hdl.hpp b/websocketpp/common/connection_hdl.hpp index fa46068e24..1044c88e34 100644 --- a/websocketpp/common/connection_hdl.hpp +++ b/websocketpp/common/connection_hdl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/functional.hpp b/websocketpp/common/functional.hpp index ae5f041afd..cc451bfacf 100644 --- a/websocketpp/common/functional.hpp +++ b/websocketpp/common/functional.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/memory.hpp b/websocketpp/common/memory.hpp index 512d8c17f8..fba4c6072f 100644 --- a/websocketpp/common/memory.hpp +++ b/websocketpp/common/memory.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/platforms.hpp b/websocketpp/common/platforms.hpp index 1196847b5a..d934a0390a 100644 --- a/websocketpp/common/platforms.hpp +++ b/websocketpp/common/platforms.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/random.hpp b/websocketpp/common/random.hpp index fe1395161c..fd29c42d30 100644 --- a/websocketpp/common/random.hpp +++ b/websocketpp/common/random.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/regex.hpp b/websocketpp/common/regex.hpp index b85cd70955..326635de2c 100644 --- a/websocketpp/common/regex.hpp +++ b/websocketpp/common/regex.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/stdint.hpp b/websocketpp/common/stdint.hpp index a8ca1e3c52..ec48ea75b6 100644 --- a/websocketpp/common/stdint.hpp +++ b/websocketpp/common/stdint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/system_error.hpp b/websocketpp/common/system_error.hpp index fff3dfe9ce..4bfa73dc51 100644 --- a/websocketpp/common/system_error.hpp +++ b/websocketpp/common/system_error.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/common/thread.hpp b/websocketpp/common/thread.hpp index e02a6582df..30fb6a420c 100644 --- a/websocketpp/common/thread.hpp +++ b/websocketpp/common/thread.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/concurrency/basic.hpp b/websocketpp/concurrency/basic.hpp index 84e61b367b..1943ad77af 100644 --- a/websocketpp/concurrency/basic.hpp +++ b/websocketpp/concurrency/basic.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/asio.hpp b/websocketpp/config/asio.hpp index b2070edb25..d28d0fb80f 100644 --- a/websocketpp/config/asio.hpp +++ b/websocketpp/config/asio.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/asio_client.hpp b/websocketpp/config/asio_client.hpp index 26d4c4db96..1cb594d0a0 100644 --- a/websocketpp/config/asio_client.hpp +++ b/websocketpp/config/asio_client.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/asio_no_tls.hpp b/websocketpp/config/asio_no_tls.hpp index a40e99a8bb..6c1357fba8 100644 --- a/websocketpp/config/asio_no_tls.hpp +++ b/websocketpp/config/asio_no_tls.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/asio_no_tls_client.hpp b/websocketpp/config/asio_no_tls_client.hpp index 8b9635f87c..6e3f7ba0e3 100644 --- a/websocketpp/config/asio_no_tls_client.hpp +++ b/websocketpp/config/asio_no_tls_client.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/core.hpp b/websocketpp/config/core.hpp index 9616fbf97c..c35bff762b 100644 --- a/websocketpp/config/core.hpp +++ b/websocketpp/config/core.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/core_client.hpp b/websocketpp/config/core_client.hpp index 9824deea57..fcbac10acb 100644 --- a/websocketpp/config/core_client.hpp +++ b/websocketpp/config/core_client.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/debug.hpp b/websocketpp/config/debug.hpp index 142bf33429..9f90360ae2 100644 --- a/websocketpp/config/debug.hpp +++ b/websocketpp/config/debug.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/debug_asio.hpp b/websocketpp/config/debug_asio.hpp index 66a65fdde6..a57c736ceb 100644 --- a/websocketpp/config/debug_asio.hpp +++ b/websocketpp/config/debug_asio.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/config/debug_asio_no_tls.hpp b/websocketpp/config/debug_asio_no_tls.hpp index 7437650aee..b3dc83b492 100644 --- a/websocketpp/config/debug_asio_no_tls.hpp +++ b/websocketpp/config/debug_asio_no_tls.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/connection_base.hpp b/websocketpp/connection_base.hpp index f780da7b90..2e700962fa 100644 --- a/websocketpp/connection_base.hpp +++ b/websocketpp/connection_base.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/endpoint.hpp b/websocketpp/endpoint.hpp index eee359d887..3bbe9da189 100644 --- a/websocketpp/endpoint.hpp +++ b/websocketpp/endpoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/endpoint_base.hpp b/websocketpp/endpoint_base.hpp index c6f26285bb..1ad1a44dc2 100644 --- a/websocketpp/endpoint_base.hpp +++ b/websocketpp/endpoint_base.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/error.hpp b/websocketpp/error.hpp index 9aacbcfc54..6fff530757 100644 --- a/websocketpp/error.hpp +++ b/websocketpp/error.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/error_container.hpp b/websocketpp/error_container.hpp index 5021e8d1e6..5a84f7aa67 100644 --- a/websocketpp/error_container.hpp +++ b/websocketpp/error_container.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/extensions/extension.hpp b/websocketpp/extensions/extension.hpp index 104ea704b6..4d2ba745de 100644 --- a/websocketpp/extensions/extension.hpp +++ b/websocketpp/extensions/extension.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/extensions/permessage_deflate/disabled.hpp b/websocketpp/extensions/permessage_deflate/disabled.hpp index 7950c4db5a..c76bf93649 100644 --- a/websocketpp/extensions/permessage_deflate/disabled.hpp +++ b/websocketpp/extensions/permessage_deflate/disabled.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/extensions/permessage_deflate/enabled.hpp b/websocketpp/extensions/permessage_deflate/enabled.hpp index fe7287486c..00a255d9bc 100644 --- a/websocketpp/extensions/permessage_deflate/enabled.hpp +++ b/websocketpp/extensions/permessage_deflate/enabled.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/frame.hpp b/websocketpp/frame.hpp index c71f70c2a5..c22d358449 100644 --- a/websocketpp/frame.hpp +++ b/websocketpp/frame.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/constants.hpp b/websocketpp/http/constants.hpp index 1f71324b97..22af5f2c4b 100644 --- a/websocketpp/http/constants.hpp +++ b/websocketpp/http/constants.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/impl/parser.hpp b/websocketpp/http/impl/parser.hpp index d1d908135d..a8f8d665f6 100644 --- a/websocketpp/http/impl/parser.hpp +++ b/websocketpp/http/impl/parser.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/impl/request.hpp b/websocketpp/http/impl/request.hpp index 4557df4b75..f7cad4f5ea 100644 --- a/websocketpp/http/impl/request.hpp +++ b/websocketpp/http/impl/request.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/impl/response.hpp b/websocketpp/http/impl/response.hpp index e3a73eb15a..6a99e81c4f 100644 --- a/websocketpp/http/impl/response.hpp +++ b/websocketpp/http/impl/response.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/parser.hpp b/websocketpp/http/parser.hpp index 281927637b..cc81f63c81 100644 --- a/websocketpp/http/parser.hpp +++ b/websocketpp/http/parser.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/request.hpp b/websocketpp/http/request.hpp index 39732031b5..4a5990ac82 100644 --- a/websocketpp/http/request.hpp +++ b/websocketpp/http/request.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/http/response.hpp b/websocketpp/http/response.hpp index 0c577bbafb..3825a5589a 100644 --- a/websocketpp/http/response.hpp +++ b/websocketpp/http/response.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/impl/endpoint_impl.hpp b/websocketpp/impl/endpoint_impl.hpp index a91d8376bd..ca2a47e9f7 100644 --- a/websocketpp/impl/endpoint_impl.hpp +++ b/websocketpp/impl/endpoint_impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/impl/utilities_impl.hpp b/websocketpp/impl/utilities_impl.hpp index 368b8681f0..3682a50138 100644 --- a/websocketpp/impl/utilities_impl.hpp +++ b/websocketpp/impl/utilities_impl.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/logger/levels.hpp b/websocketpp/logger/levels.hpp index 00d3f3fdba..a774aadfbf 100644 --- a/websocketpp/logger/levels.hpp +++ b/websocketpp/logger/levels.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/logger/stub.hpp b/websocketpp/logger/stub.hpp index 3843f4db3e..d9ba6ff92e 100644 --- a/websocketpp/logger/stub.hpp +++ b/websocketpp/logger/stub.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/message_buffer/alloc.hpp b/websocketpp/message_buffer/alloc.hpp index 62b64a5b06..75d89766a1 100644 --- a/websocketpp/message_buffer/alloc.hpp +++ b/websocketpp/message_buffer/alloc.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/message_buffer/message.hpp b/websocketpp/message_buffer/message.hpp index e7839c8ab8..fd70d6bd8d 100644 --- a/websocketpp/message_buffer/message.hpp +++ b/websocketpp/message_buffer/message.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/message_buffer/pool.hpp b/websocketpp/message_buffer/pool.hpp index 5530a35845..7b82fd21cc 100644 --- a/websocketpp/message_buffer/pool.hpp +++ b/websocketpp/message_buffer/pool.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/processors/base.hpp b/websocketpp/processors/base.hpp index e455e842ad..66cfc6aac5 100644 --- a/websocketpp/processors/base.hpp +++ b/websocketpp/processors/base.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/processors/hybi00.hpp b/websocketpp/processors/hybi00.hpp index 28c2db2faf..704f826611 100644 --- a/websocketpp/processors/hybi00.hpp +++ b/websocketpp/processors/hybi00.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/processors/hybi07.hpp b/websocketpp/processors/hybi07.hpp index 0940482287..59b6f55962 100644 --- a/websocketpp/processors/hybi07.hpp +++ b/websocketpp/processors/hybi07.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/processors/hybi08.hpp b/websocketpp/processors/hybi08.hpp index 9b1d07e1b6..7e9337d828 100644 --- a/websocketpp/processors/hybi08.hpp +++ b/websocketpp/processors/hybi08.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/processors/hybi13.hpp b/websocketpp/processors/hybi13.hpp index 907033be25..cb98286c57 100644 --- a/websocketpp/processors/hybi13.hpp +++ b/websocketpp/processors/hybi13.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/processors/processor.hpp b/websocketpp/processors/processor.hpp index 024be3d354..dc174a49a2 100644 --- a/websocketpp/processors/processor.hpp +++ b/websocketpp/processors/processor.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/random/none.hpp b/websocketpp/random/none.hpp index 30854dd233..2163e6f4a6 100644 --- a/websocketpp/random/none.hpp +++ b/websocketpp/random/none.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/random/random_device.hpp b/websocketpp/random/random_device.hpp index 7645399b98..91e7dd1624 100644 --- a/websocketpp/random/random_device.hpp +++ b/websocketpp/random/random_device.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/roles/client_endpoint.hpp b/websocketpp/roles/client_endpoint.hpp index 5d8a383bba..22c7da1060 100644 --- a/websocketpp/roles/client_endpoint.hpp +++ b/websocketpp/roles/client_endpoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/roles/server_endpoint.hpp b/websocketpp/roles/server_endpoint.hpp index 177fbcbc3d..e92cbf0ae2 100644 --- a/websocketpp/roles/server_endpoint.hpp +++ b/websocketpp/roles/server_endpoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/server.hpp b/websocketpp/server.hpp index 50d33d10e0..342fa8c541 100644 --- a/websocketpp/server.hpp +++ b/websocketpp/server.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/transport/asio/base.hpp b/websocketpp/transport/asio/base.hpp index 28ac933c6b..8ede3aaabd 100644 --- a/websocketpp/transport/asio/base.hpp +++ b/websocketpp/transport/asio/base.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/transport/base/connection.hpp b/websocketpp/transport/base/connection.hpp index 9f03337dc7..774c60d08b 100644 --- a/websocketpp/transport/base/connection.hpp +++ b/websocketpp/transport/base/connection.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/transport/base/endpoint.hpp b/websocketpp/transport/base/endpoint.hpp index 1fefd48358..43bbdf46fe 100644 --- a/websocketpp/transport/base/endpoint.hpp +++ b/websocketpp/transport/base/endpoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/transport/iostream/base.hpp b/websocketpp/transport/iostream/base.hpp index 5bfb5539d3..a80169fea6 100644 --- a/websocketpp/transport/iostream/base.hpp +++ b/websocketpp/transport/iostream/base.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/transport/iostream/connection.hpp b/websocketpp/transport/iostream/connection.hpp index 0816259bd6..cbd802ec70 100644 --- a/websocketpp/transport/iostream/connection.hpp +++ b/websocketpp/transport/iostream/connection.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/transport/iostream/endpoint.hpp b/websocketpp/transport/iostream/endpoint.hpp index 92545a7c1b..6a83b3b7e3 100644 --- a/websocketpp/transport/iostream/endpoint.hpp +++ b/websocketpp/transport/iostream/endpoint.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/uri.hpp b/websocketpp/uri.hpp index b0895d581b..ff8285ba5a 100644 --- a/websocketpp/uri.hpp +++ b/websocketpp/uri.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/utilities.hpp b/websocketpp/utilities.hpp index 8f08efef56..747f1199bf 100644 --- a/websocketpp/utilities.hpp +++ b/websocketpp/utilities.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/websocketpp/version.hpp b/websocketpp/version.hpp index d6b4817330..a9a80297ef 100644 --- a/websocketpp/version.hpp +++ b/websocketpp/version.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Peter Thorson. All rights reserved. + * Copyright (c) 2014, Peter Thorson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -50,10 +50,10 @@ static int const patch_version = 0; * This is a textual flag indicating the type and number for pre-release * versions (dev, alpha, beta, rc). This will be blank for release versions. */ -static char const prerelease_flag[] = "dev"; +static char const prerelease_flag[] = ""; /// Default user agent string -static char const user_agent[] = "WebSocket++/0.4.0-dev"; +static char const user_agent[] = "WebSocket++/0.4.0"; } // namespace websocketpp