diff --git a/CMakeLists.txt b/CMakeLists.txt index fd1aba1..098ca15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## cmake_minimum_required(VERSION 3.16) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8d6ca26..0b768f5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(coturn) diff --git a/src/apps/CMakeLists.txt b/src/apps/CMakeLists.txt index 5847796..c6ba4af 100644 --- a/src/apps/CMakeLists.txt +++ b/src/apps/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## add_subdirectory(common) add_subdirectory(natdiscovery) diff --git a/src/apps/common/CMakeLists.txt b/src/apps/common/CMakeLists.txt index def6b08..d4f6c84 100644 --- a/src/apps/common/CMakeLists.txt +++ b/src/apps/common/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turncommon) diff --git a/src/apps/common/apputils.c b/src/apps/common/apputils.c index 4116a90..f1b13a8 100644 --- a/src/apps/common/apputils.c +++ b/src/apps/common/apputils.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/common/apputils.h b/src/apps/common/apputils.h index 84a310a..66acd47 100644 --- a/src/apps/common/apputils.h +++ b/src/apps/common/apputils.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/common/ns_turn_openssl.h b/src/apps/common/ns_turn_openssl.h index e9ae9ea..6a32afc 100644 --- a/src/apps/common/ns_turn_openssl.h +++ b/src/apps/common/ns_turn_openssl.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/common/ns_turn_utils.c b/src/apps/common/ns_turn_utils.c index d6908b1..33c200b 100644 --- a/src/apps/common/ns_turn_utils.c +++ b/src/apps/common/ns_turn_utils.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/common/ns_turn_utils.h b/src/apps/common/ns_turn_utils.h index a1b4afd..5bf68b0 100644 --- a/src/apps/common/ns_turn_utils.h +++ b/src/apps/common/ns_turn_utils.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/common/stun_buffer.c b/src/apps/common/stun_buffer.c index 420abad..9e3970a 100644 --- a/src/apps/common/stun_buffer.c +++ b/src/apps/common/stun_buffer.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/natdiscovery/CMakeLists.txt b/src/apps/natdiscovery/CMakeLists.txt index 63607ae..30288dd 100644 --- a/src/apps/natdiscovery/CMakeLists.txt +++ b/src/apps/natdiscovery/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnutils_natdiscovery) diff --git a/src/apps/natdiscovery/natdiscovery.c b/src/apps/natdiscovery/natdiscovery.c index 0dcb00e..4569fbc 100644 --- a/src/apps/natdiscovery/natdiscovery.c +++ b/src/apps/natdiscovery/natdiscovery.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/oauth/CMakeLists.txt b/src/apps/oauth/CMakeLists.txt index e26e739..99336d5 100644 --- a/src/apps/oauth/CMakeLists.txt +++ b/src/apps/oauth/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnutils_oauth) diff --git a/src/apps/oauth/oauth.c b/src/apps/oauth/oauth.c index df4f4d8..cd04e3f 100644 --- a/src/apps/oauth/oauth.c +++ b/src/apps/oauth/oauth.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/peer/CMakeLists.txt b/src/apps/peer/CMakeLists.txt index 7489767..300ae2b 100644 --- a/src/apps/peer/CMakeLists.txt +++ b/src/apps/peer/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnutils_peer) diff --git a/src/apps/peer/mainudpserver.c b/src/apps/peer/mainudpserver.c index b96be38..097f133 100644 --- a/src/apps/peer/mainudpserver.c +++ b/src/apps/peer/mainudpserver.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/peer/udpserver.c b/src/apps/peer/udpserver.c index d45ed61..7a0f61d 100644 --- a/src/apps/peer/udpserver.c +++ b/src/apps/peer/udpserver.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/peer/udpserver.h b/src/apps/peer/udpserver.h index 9107c81..966d070 100644 --- a/src/apps/peer/udpserver.h +++ b/src/apps/peer/udpserver.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/CMakeLists.txt b/src/apps/relay/CMakeLists.txt index 35d2a25..f8233f0 100644 --- a/src/apps/relay/CMakeLists.txt +++ b/src/apps/relay/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnserver) diff --git a/src/apps/relay/acme.c b/src/apps/relay/acme.c index 5ead7b8..81a12fe 100644 --- a/src/apps/relay/acme.c +++ b/src/apps/relay/acme.c @@ -1,8 +1,22 @@ - /* + * SPDX-License-Identifier: MIT + * + * https://opensource.org/license/mit + * * Copyright (C) 2020 Jens Elkner. All rights reserved. * - * License: MIT - see https://opensource.org/licenses/MIT + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated + * documentation files (the “Software”), to deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "acme.h" diff --git a/src/apps/relay/acme.h b/src/apps/relay/acme.h index 0fab3dd..ff586dd 100644 --- a/src/apps/relay/acme.h +++ b/src/apps/relay/acme.h @@ -1,31 +1,22 @@ /* - * Copyright (C) 2011, 2012, 2013, 2014 Citrix Systems + * SPDX-License-Identifier: MIT * - * All rights reserved. + * https://opensource.org/license/mit * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the project nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. + * Copyright (C) 2020 Jens Elkner. All rights reserved. * - * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated + * documentation files (the “Software”), to deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __TURN_ACME__ diff --git a/src/apps/relay/dbdrivers/dbd_mongo.c b/src/apps/relay/dbdrivers/dbd_mongo.c index 9a62adf..0c80cc7 100644 --- a/src/apps/relay/dbdrivers/dbd_mongo.c +++ b/src/apps/relay/dbdrivers/dbd_mongo.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_mongo.h b/src/apps/relay/dbdrivers/dbd_mongo.h index 1bc4da8..79d772e 100644 --- a/src/apps/relay/dbdrivers/dbd_mongo.h +++ b/src/apps/relay/dbdrivers/dbd_mongo.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_mysql.c b/src/apps/relay/dbdrivers/dbd_mysql.c index 638dbe1..d40bb23 100644 --- a/src/apps/relay/dbdrivers/dbd_mysql.c +++ b/src/apps/relay/dbdrivers/dbd_mysql.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_mysql.h b/src/apps/relay/dbdrivers/dbd_mysql.h index af15c70..d9b3eec 100644 --- a/src/apps/relay/dbdrivers/dbd_mysql.h +++ b/src/apps/relay/dbdrivers/dbd_mysql.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_pgsql.c b/src/apps/relay/dbdrivers/dbd_pgsql.c index d0311a4..f863c83 100644 --- a/src/apps/relay/dbdrivers/dbd_pgsql.c +++ b/src/apps/relay/dbdrivers/dbd_pgsql.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_pgsql.h b/src/apps/relay/dbdrivers/dbd_pgsql.h index c117102..fe7cfc2 100644 --- a/src/apps/relay/dbdrivers/dbd_pgsql.h +++ b/src/apps/relay/dbdrivers/dbd_pgsql.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_redis.c b/src/apps/relay/dbdrivers/dbd_redis.c index 913c2db..056dc2b 100644 --- a/src/apps/relay/dbdrivers/dbd_redis.c +++ b/src/apps/relay/dbdrivers/dbd_redis.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_redis.h b/src/apps/relay/dbdrivers/dbd_redis.h index 34bdffc..2291e72 100644 --- a/src/apps/relay/dbdrivers/dbd_redis.h +++ b/src/apps/relay/dbdrivers/dbd_redis.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_sqlite.c b/src/apps/relay/dbdrivers/dbd_sqlite.c index 7ab5e5c..4d64494 100644 --- a/src/apps/relay/dbdrivers/dbd_sqlite.c +++ b/src/apps/relay/dbdrivers/dbd_sqlite.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbd_sqlite.h b/src/apps/relay/dbdrivers/dbd_sqlite.h index cc238c0..0287b7d 100644 --- a/src/apps/relay/dbdrivers/dbd_sqlite.h +++ b/src/apps/relay/dbdrivers/dbd_sqlite.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbdriver.c b/src/apps/relay/dbdrivers/dbdriver.c index 1466498..6ac483d 100644 --- a/src/apps/relay/dbdrivers/dbdriver.c +++ b/src/apps/relay/dbdrivers/dbdriver.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dbdrivers/dbdriver.h b/src/apps/relay/dbdrivers/dbdriver.h index 624c23c..20ef723 100644 --- a/src/apps/relay/dbdrivers/dbdriver.h +++ b/src/apps/relay/dbdrivers/dbdriver.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * Copyright (C) 2014 Vivocha S.p.A. * diff --git a/src/apps/relay/dtls_listener.c b/src/apps/relay/dtls_listener.c index 38eff03..68b756e 100644 --- a/src/apps/relay/dtls_listener.c +++ b/src/apps/relay/dtls_listener.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/dtls_listener.h b/src/apps/relay/dtls_listener.h index 8dc04d2..70ec543 100644 --- a/src/apps/relay/dtls_listener.h +++ b/src/apps/relay/dtls_listener.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/hiredis_libevent2.c b/src/apps/relay/hiredis_libevent2.c index b227fe2..9c1b5b9 100644 --- a/src/apps/relay/hiredis_libevent2.c +++ b/src/apps/relay/hiredis_libevent2.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/hiredis_libevent2.h b/src/apps/relay/hiredis_libevent2.h index cad5ade..fed9333 100644 --- a/src/apps/relay/hiredis_libevent2.h +++ b/src/apps/relay/hiredis_libevent2.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/http_server.c b/src/apps/relay/http_server.c index 2ded1f7..015d1fb 100644 --- a/src/apps/relay/http_server.c +++ b/src/apps/relay/http_server.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013, 2014 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/http_server.h b/src/apps/relay/http_server.h index a4a11c1..c0913c0 100644 --- a/src/apps/relay/http_server.h +++ b/src/apps/relay/http_server.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013, 2014 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/libtelnet.c b/src/apps/relay/libtelnet.c index 8bc0edc..c158ca0 100644 --- a/src/apps/relay/libtelnet.c +++ b/src/apps/relay/libtelnet.c @@ -1,4 +1,6 @@ /* + * SPDX-License-Identifier: Unknown + * * libtelnet - TELNET protocol handling library * * Sean Middleditch diff --git a/src/apps/relay/libtelnet.h b/src/apps/relay/libtelnet.h index 663ed1b..26c7df8 100644 --- a/src/apps/relay/libtelnet.h +++ b/src/apps/relay/libtelnet.h @@ -1,4 +1,6 @@ /*! + * SPDX-License-Identifier: Unknown + * * \brief libtelnet - TELNET protocol handling library * * SUMMARY: diff --git a/src/apps/relay/mainrelay.c b/src/apps/relay/mainrelay.c index a4dece9..1eca150 100644 --- a/src/apps/relay/mainrelay.c +++ b/src/apps/relay/mainrelay.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/mainrelay.h b/src/apps/relay/mainrelay.h index 9aac16f..bb6b9af 100644 --- a/src/apps/relay/mainrelay.h +++ b/src/apps/relay/mainrelay.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/netengine.c b/src/apps/relay/netengine.c index f3ff5fa..2f83f17 100644 --- a/src/apps/relay/netengine.c +++ b/src/apps/relay/netengine.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/ns_ioalib_engine_impl.c b/src/apps/relay/ns_ioalib_engine_impl.c index 178491f..a345f9b 100644 --- a/src/apps/relay/ns_ioalib_engine_impl.c +++ b/src/apps/relay/ns_ioalib_engine_impl.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/ns_ioalib_impl.h b/src/apps/relay/ns_ioalib_impl.h index bb7cccd..24a2fee 100644 --- a/src/apps/relay/ns_ioalib_impl.h +++ b/src/apps/relay/ns_ioalib_impl.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/ns_sm.h b/src/apps/relay/ns_sm.h index 1539813..a273a7b 100644 --- a/src/apps/relay/ns_sm.h +++ b/src/apps/relay/ns_sm.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013, 2014 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/prom_server.c b/src/apps/relay/prom_server.c index 82b0faa..ab21bd1 100644 --- a/src/apps/relay/prom_server.c +++ b/src/apps/relay/prom_server.c @@ -1,3 +1,37 @@ +/* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * + * Copyright (C) 2020 Miquel Ortega + * + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the project nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + #include "prom_server.h" #include "mainrelay.h" #include "ns_turn_utils.h" diff --git a/src/apps/relay/prom_server.h b/src/apps/relay/prom_server.h index 7659ed5..5fab19d 100644 --- a/src/apps/relay/prom_server.h +++ b/src/apps/relay/prom_server.h @@ -1,3 +1,36 @@ +/* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * + * Copyright (C) 2020 Miquel Ortega + * + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the project nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ #ifndef __PROM_SERVER_H__ #define __PROM_SERVER_H__ diff --git a/src/apps/relay/tls_listener.c b/src/apps/relay/tls_listener.c index 326775a..6aa5ebe 100644 --- a/src/apps/relay/tls_listener.c +++ b/src/apps/relay/tls_listener.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/tls_listener.h b/src/apps/relay/tls_listener.h index 7556d0a..ce3f94d 100644 --- a/src/apps/relay/tls_listener.h +++ b/src/apps/relay/tls_listener.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/turn_admin_server.c b/src/apps/relay/turn_admin_server.c index 0be2288..ba2ca91 100644 --- a/src/apps/relay/turn_admin_server.c +++ b/src/apps/relay/turn_admin_server.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/turn_admin_server.h b/src/apps/relay/turn_admin_server.h index 6946561..87669d6 100644 --- a/src/apps/relay/turn_admin_server.h +++ b/src/apps/relay/turn_admin_server.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/turn_ports.c b/src/apps/relay/turn_ports.c index 4fa306f..41426d2 100644 --- a/src/apps/relay/turn_ports.c +++ b/src/apps/relay/turn_ports.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/turn_ports.h b/src/apps/relay/turn_ports.h index b3bd9e3..b79432d 100644 --- a/src/apps/relay/turn_ports.h +++ b/src/apps/relay/turn_ports.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/userdb.c b/src/apps/relay/userdb.c index 1990a08..104e05f 100644 --- a/src/apps/relay/userdb.c +++ b/src/apps/relay/userdb.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/relay/userdb.h b/src/apps/relay/userdb.h index 14ddecb..4bad8b9 100644 --- a/src/apps/relay/userdb.h +++ b/src/apps/relay/userdb.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/rfc5769/CMakeLists.txt b/src/apps/rfc5769/CMakeLists.txt index 27b94a9..fd2658e 100644 --- a/src/apps/rfc5769/CMakeLists.txt +++ b/src/apps/rfc5769/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnutils_rfc5769check) diff --git a/src/apps/rfc5769/rfc5769check.c b/src/apps/rfc5769/rfc5769check.c index b839015..7705d0e 100644 --- a/src/apps/rfc5769/rfc5769check.c +++ b/src/apps/rfc5769/rfc5769check.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/stunclient/CMakeLists.txt b/src/apps/stunclient/CMakeLists.txt index 637839d..de8bae0 100644 --- a/src/apps/stunclient/CMakeLists.txt +++ b/src/apps/stunclient/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnutils_stunclient) diff --git a/src/apps/stunclient/stunclient.c b/src/apps/stunclient/stunclient.c index 4a5db9f..58f8ffc 100644 --- a/src/apps/stunclient/stunclient.c +++ b/src/apps/stunclient/stunclient.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/uclient/CMakeLists.txt b/src/apps/uclient/CMakeLists.txt index 540cacc..1f0d79c 100644 --- a/src/apps/uclient/CMakeLists.txt +++ b/src/apps/uclient/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnutils_uclient) diff --git a/src/apps/uclient/mainuclient.c b/src/apps/uclient/mainuclient.c index f175dcc..5a37386 100644 --- a/src/apps/uclient/mainuclient.c +++ b/src/apps/uclient/mainuclient.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. @@ -27,7 +31,6 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ - #include "apputils.h" #include "ns_turn_utils.h" #include "session.h" diff --git a/src/apps/uclient/session.h b/src/apps/uclient/session.h index a019ece..60a5491 100644 --- a/src/apps/uclient/session.h +++ b/src/apps/uclient/session.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/uclient/startuclient.c b/src/apps/uclient/startuclient.c index 2602568..d580359 100644 --- a/src/apps/uclient/startuclient.c +++ b/src/apps/uclient/startuclient.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/uclient/startuclient.h b/src/apps/uclient/startuclient.h index 72f8d67..d351ab8 100644 --- a/src/apps/uclient/startuclient.h +++ b/src/apps/uclient/startuclient.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/uclient/uclient.c b/src/apps/uclient/uclient.c index c5b4629..a0133af 100644 --- a/src/apps/uclient/uclient.c +++ b/src/apps/uclient/uclient.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/apps/uclient/uclient.h b/src/apps/uclient/uclient.h index 7ae418d..0b17e28 100644 --- a/src/apps/uclient/uclient.h +++ b/src/apps/uclient/uclient.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client++/TurnMsgLib.h b/src/client++/TurnMsgLib.h index 18475e0..c2a4dbc 100644 --- a/src/client++/TurnMsgLib.h +++ b/src/client++/TurnMsgLib.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index ef8cdb2..bfa0a5f 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turnclient) diff --git a/src/client/ns_turn_ioaddr.c b/src/client/ns_turn_ioaddr.c index 37a0ab7..6bdb5dc 100644 --- a/src/client/ns_turn_ioaddr.c +++ b/src/client/ns_turn_ioaddr.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_ioaddr.h b/src/client/ns_turn_ioaddr.h index 8a4c4db..b8ff8d0 100644 --- a/src/client/ns_turn_ioaddr.h +++ b/src/client/ns_turn_ioaddr.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_msg.c b/src/client/ns_turn_msg.c index c83781f..b14ca28 100644 --- a/src/client/ns_turn_msg.c +++ b/src/client/ns_turn_msg.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_msg.h b/src/client/ns_turn_msg.h index a611af0..85411f2 100644 --- a/src/client/ns_turn_msg.h +++ b/src/client/ns_turn_msg.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_msg_addr.c b/src/client/ns_turn_msg_addr.c index 019aa5f..ff4a5f5 100644 --- a/src/client/ns_turn_msg_addr.c +++ b/src/client/ns_turn_msg_addr.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_msg_addr.h b/src/client/ns_turn_msg_addr.h index 72a465d..76269c3 100644 --- a/src/client/ns_turn_msg_addr.h +++ b/src/client/ns_turn_msg_addr.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_msg_defs.h b/src/client/ns_turn_msg_defs.h index 5b3a665..54d3703 100644 --- a/src/client/ns_turn_msg_defs.h +++ b/src/client/ns_turn_msg_defs.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/client/ns_turn_msg_defs_experimental.h b/src/client/ns_turn_msg_defs_experimental.h index 2fba59e..fad5636 100644 --- a/src/client/ns_turn_msg_defs_experimental.h +++ b/src/client/ns_turn_msg_defs_experimental.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/ns_turn_defs.h b/src/ns_turn_defs.h index 6fc2d3d..46ff274 100644 --- a/src/ns_turn_defs.h +++ b/src/ns_turn_defs.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/CMakeLists.txt b/src/server/CMakeLists.txt index 5bad5de..bd8d59b 100644 --- a/src/server/CMakeLists.txt +++ b/src/server/CMakeLists.txt @@ -1,4 +1,36 @@ -# Author: Kang Lin +## +# SPDX-License-Identifier: BSD-3-Clause +# +# https://opensource.org/license/bsd-3-clause +# +# Copyright (C) 2021 Kang Lin +# +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +## project(turn_server) diff --git a/src/server/ns_turn_allocation.c b/src/server/ns_turn_allocation.c index a0f98ef..40f30de 100644 --- a/src/server/ns_turn_allocation.c +++ b/src/server/ns_turn_allocation.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_allocation.h b/src/server/ns_turn_allocation.h index a9835ad..ba324b3 100644 --- a/src/server/ns_turn_allocation.h +++ b/src/server/ns_turn_allocation.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_ioalib.h b/src/server/ns_turn_ioalib.h index 867c0be..8c126b5 100644 --- a/src/server/ns_turn_ioalib.h +++ b/src/server/ns_turn_ioalib.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_khash.h b/src/server/ns_turn_khash.h index ded73d1..2c229ee 100644 --- a/src/server/ns_turn_khash.h +++ b/src/server/ns_turn_khash.h @@ -1,5 +1,9 @@ /* The MIT License + SPDX-License-Identifier: MIT + + https://opensource.org/license/mit + Copyright (c) 2008, 2009, 2011 by Attractive Chaos Permission is hereby granted, free of charge, to any person obtaining diff --git a/src/server/ns_turn_maps.c b/src/server/ns_turn_maps.c index a3f9a0a..0111c65 100644 --- a/src/server/ns_turn_maps.c +++ b/src/server/ns_turn_maps.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_maps.h b/src/server/ns_turn_maps.h index f9c1e3f..9203410 100644 --- a/src/server/ns_turn_maps.h +++ b/src/server/ns_turn_maps.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_maps_rtcp.c b/src/server/ns_turn_maps_rtcp.c index a5943e0..8a0e1e7 100644 --- a/src/server/ns_turn_maps_rtcp.c +++ b/src/server/ns_turn_maps_rtcp.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_maps_rtcp.h b/src/server/ns_turn_maps_rtcp.h index 713688b..5ee18dd 100644 --- a/src/server/ns_turn_maps_rtcp.h +++ b/src/server/ns_turn_maps_rtcp.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_server.c b/src/server/ns_turn_server.c index cfd7b1d..fed6a40 100644 --- a/src/server/ns_turn_server.c +++ b/src/server/ns_turn_server.c @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_server.h b/src/server/ns_turn_server.h index a2c474e..861feb1 100644 --- a/src/server/ns_turn_server.h +++ b/src/server/ns_turn_server.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved. diff --git a/src/server/ns_turn_session.h b/src/server/ns_turn_session.h index 66c2419..effe6b5 100644 --- a/src/server/ns_turn_session.h +++ b/src/server/ns_turn_session.h @@ -1,4 +1,8 @@ /* + * SPDX-License-Identifier: BSD-3-Clause + * + * https://opensource.org/license/bsd-3-clause + * * Copyright (C) 2011, 2012, 2013 Citrix Systems * * All rights reserved.