Skip to content

Commit f0deda4

Browse files
committed
Updates to boost license.
1 parent d1e7ec6 commit f0deda4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+152
-547
lines changed

LICENSE

-373
This file was deleted.

LICENSE.txt

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Boost Software License - Version 1.0 - August 17th, 2003
2+
3+
Permission is hereby granted, free of charge, to any person or organization
4+
obtaining a copy of the software and accompanying documentation covered by
5+
this license (the "Software") to use, reproduce, display, distribute,
6+
execute, and transmit the Software, and to prepare derivative works of the
7+
Software, and to permit third-parties to whom the Software is furnished to
8+
do so, all subject to the following:
9+
10+
The copyright notices in the Software and this entire statement, including
11+
the above license grant, this restriction and the following disclaimer,
12+
must be included in all copies of the Software, in whole or in part, and
13+
all derivative works of the Software, unless such copies or derivative
14+
works are solely in the form of machine-executable object code generated by
15+
a source language processor.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
20+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
21+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
22+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23+
DEALINGS IN THE SOFTWARE.

aedis/adapter/adapt.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_ADAPTER_ADAPT_HPP

aedis/adapter/detail/adapters.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_ADAPTER_ADAPTERS_HPP

aedis/adapter/error.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_ADAPTER_ERROR_HPP

aedis/adapter/impl/error.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <system_error>

aedis/adapter/response_traits.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_ADAPTER_RESPONSE_TRAITS_HPP

aedis/aedis.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_HPP

aedis/generic/client.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_GENERIC_CLIENT_HPP

aedis/generic/detail/client_ops.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_GENERIC_CLIENT_OPS_HPP

aedis/generic/error.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_GENERIC_ERROR_HPP

aedis/generic/impl/error.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <aedis/generic/error.hpp>

aedis/generic/serializer.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_GENERIC_SERIALIZER_HPP

aedis/redis/command.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_REDIS_COMMAND_HPP

aedis/redis/impl/command.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <aedis/redis/command.hpp>

aedis/resp3/compose.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_COMPOSE_HPP

aedis/resp3/detail/impl/parser.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva (mzimbres at gmail dot com)
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <boost/spirit/include/qi.hpp>

aedis/resp3/detail/parser.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva (mzimbres at gmail dot com)
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_PARSER_HPP

aedis/resp3/detail/read_ops.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva (mzimbres at gmail dot com)
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_READ_OPS_HPP

aedis/resp3/error.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_ERROR_HPP

aedis/resp3/impl/error.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <boost/assert.hpp>

aedis/resp3/impl/type.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <boost/assert.hpp>

aedis/resp3/node.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 - 2022 Marcelo Zimbres Silva (mzimbres at gmail dot com)
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_NODE_HPP

aedis/resp3/read.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_READ_HPP

aedis/resp3/type.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 - 2021 Marcelo Zimbres Silva (mzimbres at gmail dot com)
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_RESP3_TYPE_HPP

aedis/sentinel/command.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#ifndef AEDIS_SENTINEL_COMMAND_HPP

aedis/sentinel/impl/command.ipp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <aedis/sentinel/command.hpp>

aedis/src.hpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

8-
// Include this file in no more than one source file in your application.
9-
107
#include <aedis/redis/impl/command.ipp>
118
#include <aedis/sentinel/impl/command.ipp>
129
#include <aedis/resp3/impl/type.ipp>

examples/aggregates_high_level.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <map>

examples/chat_room.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <vector>

examples/custom_adapter.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva (mzimbres.gmail.com)
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <iostream>

examples/echo_server.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <iostream>

examples/intro_high_level.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
/* Copyright (c) 2019 Marcelo Zimbres Silva ([email protected])
1+
/* Copyright (c) 2018 Marcelo Zimbres Silva ([email protected])
22
*
3-
* This Source Code Form is subject to the terms of the Mozilla Public
4-
* License, v. 2.0. If a copy of the MPL was not distributed with this
5-
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
3+
* Distributed under the Boost Software License, Version 1.0. (See
4+
* accompanying file LICENSE.txt)
65
*/
76

87
#include <string>

0 commit comments

Comments
 (0)