laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-netif/+/42476?usp=email )
Change subject: icmpv6: Re-license code under GPL-v2-or-later ......................................................................
icmpv6: Re-license code under GPL-v2-or-later
The original statement in my code from osmo-ggsn commit d46bcd236e93432c894a939f4e5810dc5e9b4974 in 2017 was worded GPLv2-only, which was most likely an oversight.
All subsequent modifications to this code were done by either me or Pau Espin, who was doing the work under contract with sysmocom, of which I'm the managing director. Therefore, I have legal authority to re-license this file to v2-or-later.
Change-Id: I5a4fa18ef64c2f228e21fa2c067e55eaa4080508 --- M src/icmpv6.c 1 file changed, 16 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/76/42476/1
diff --git a/src/icmpv6.c b/src/icmpv6.c index b0f29a8..c0d5710 100644 --- a/src/icmpv6.c +++ b/src/icmpv6.c @@ -2,13 +2,24 @@ * relevant 3GPP specs for a GGSN with IPv6 PDP contexts */
/* (C) 2017 by Harald Welte laforge@gnumonks.org + * All Rights Reserved. * - * The contents of this file may be used under the terms of the GNU - * General Public License Version 2, provided that the above copyright - * notice and this permission notice is included in all copies or - * substantial portions of the software. + * SPDX-License-Identifier: GPL-2.0+ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see http://www.gnu.org/licenses/. + * */ - #include <stdint.h> #include <stdbool.h> #include <string.h>