Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce6a3be

Browse files
author
Antonio Juarez
committed
Update license from MIT to LGPL
1 parent 209e235 commit ce6a3be

File tree

229 files changed

+3674
-714
lines changed

Some content is hidden

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

229 files changed

+3674
-714
lines changed

include/INode.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

include/IWallet.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/ObserverManager.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/base58.cpp

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4-
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
517

618
#include "base58.h"
719

src/common/base58.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/boost_serialization_helper.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/command_line.cpp

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#include "command_line.h"
619

src/common/command_line.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/int-util.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/pod-class.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/unordered_containers_boost_serialization.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/util.cpp

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#include <cstdio>
619

src/common/util.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/common/varint.h

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

src/connectivity_tool/conn_tool.cpp

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4-
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
517

618

719
#include "include_base_utils.h"
@@ -350,4 +362,3 @@ int main(int argc, char* argv[])
350362

351363
return 1;
352364
}
353-

src/crypto/chacha8.h

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1-
// Copyright (c) 2012-2013 The Cryptonote developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
3-
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
1+
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
2+
//
3+
// This file is part of Bytecoin.
4+
//
5+
// Bytecoin is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Lesser General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Bytecoin is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU Lesser General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU Lesser General Public License
16+
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
417

518
#pragma once
619

@@ -53,4 +66,4 @@ namespace crypto {
5366
}
5467
}
5568

56-
#endif
69+
#endif

0 commit comments

Comments
 (0)