Davide Pesavento | 1b640fd | 2023-01-04 21:00:05 -0500 | [diff] [blame] | 1 | # Notes for NLSR developers |
| 2 | |
Davide Pesavento | fa54ee9 | 2023-02-20 04:16:51 -0500 | [diff] [blame] | 3 | If you are new to the NDN software community, please read our |
Davide Pesavento | 1e9faf1 | 2023-01-21 16:04:50 -0500 | [diff] [blame] | 4 | [Contributor's Guide](https://github.com/named-data/.github/blob/main/CONTRIBUTING.md). |
Davide Pesavento | 1b640fd | 2023-01-04 21:00:05 -0500 | [diff] [blame] | 5 | |
| 6 | ## Licensing requirements |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 7 | |
Davide Pesavento | fa54ee9 | 2023-02-20 04:16:51 -0500 | [diff] [blame] | 8 | Contributions to NLSR must be licensed under the GPL v3 or a compatible license. |
| 9 | If you choose the GPL v3, please use the following license boilerplate in all `.hpp` |
| 10 | and `.cpp` files: |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 11 | |
| 12 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | ba8a4ed | 2021-10-13 21:28:43 -0400 | [diff] [blame] | 13 | /* |
| 14 | * Copyright (c) [Year(s)], [Copyright Holder(s)]. |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 15 | * |
| 16 | * This file is part of NLSR (Named-data Link State Routing). |
| 17 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 18 | * |
| 19 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 20 | * of the GNU General Public License as published by the Free Software Foundation, |
| 21 | * either version 3 of the License, or (at your option) any later version. |
| 22 | * |
| 23 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 24 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 25 | * PURPOSE. See the GNU General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License along with |
| 28 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Davide Pesavento | ba8a4ed | 2021-10-13 21:28:43 -0400 | [diff] [blame] | 29 | */ |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | 1b640fd | 2023-01-04 21:00:05 -0500 | [diff] [blame] | 31 | If you are affiliated with an NSF-supported NDN project institution, please use the [NDN Team License |
| 32 | Boilerplate](https://redmine.named-data.net/projects/nlsr/wiki/NDN_Team_License_Boilerplate_(NLSR)). |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 33 | |
Davide Pesavento | 1b640fd | 2023-01-04 21:00:05 -0500 | [diff] [blame] | 34 | ## Recommendations |
Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 35 | |
Davide Pesavento | 1b640fd | 2023-01-04 21:00:05 -0500 | [diff] [blame] | 36 | NLSR code is subject to the code style defined |
awlane | 697a0ad | 2025-04-21 13:09:17 -0500 | [diff] [blame^] | 37 | [here](https://docs.named-data.net/ndn-cxx/current/code-style.html). |
Ashlesh Gawande | 39cf81a | 2018-02-22 13:37:07 -0600 | [diff] [blame] | 38 | |
Davide Pesavento | 1b640fd | 2023-01-04 21:00:05 -0500 | [diff] [blame] | 39 | NLSR Developer's guide can be found |
| 40 | [here](https://github.com/named-data/NLSR/blob/developers-guide/NLSR-Developers-Guide.pdf). |