diff --git a/lib/core/ogs-getopt.c b/lib/core/ogs-getopt.c index 8e0faaf17..1c14378ef 100644 --- a/lib/core/ogs-getopt.c +++ b/lib/core/ogs-getopt.c @@ -1,5 +1,35 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * The code is stolen from optparse + * https://github.com/skeeto/optparse + * + * This is free and unencumbered software released into the public domain. + * + * Anyone is free to copy, modify, publish, use, compile, sell, or + * distribute this software, either in source code form or as a compiled + * binary, for any purpose, commercial or non-commercial, and by any + * means. + * + * In jurisdictions that recognize copyright laws, the author or authors + * of this software dedicate any and all copyright interest in the + * software to the public domain. We make this dedication for the benefit + * of the public at large and to the detriment of our heirs and + * successors. We intend this dedication to be an overt act of + * relinquishment in perpetuity of all present and future rights to this + * software under copyright law. + * + * 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 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. + * + * For more information, please refer to + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-getopt.h b/lib/core/ogs-getopt.h index 40e2682d4..0a20ac07f 100644 --- a/lib/core/ogs-getopt.h +++ b/lib/core/ogs-getopt.h @@ -1,5 +1,35 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * The code is stolen from optparse + * https://github.com/skeeto/optparse + * + * This is free and unencumbered software released into the public domain. + * + * Anyone is free to copy, modify, publish, use, compile, sell, or + * distribute this software, either in source code form or as a compiled + * binary, for any purpose, commercial or non-commercial, and by any + * means. + * + * In jurisdictions that recognize copyright laws, the author or authors + * of this software dedicate any and all copyright interest in the + * software to the public domain. We make this dedication for the benefit + * of the public at large and to the detriment of our heirs and + * successors. We intend this dedication to be an overt act of + * relinquishment in perpetuity of all present and future rights to this + * software under copyright law. + * + * 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 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. + * + * For more information, please refer to + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * @@ -24,11 +54,6 @@ #ifndef OGS_GETOPT_H #define OGS_GETOPT_H -/* - * The following code is stolen from optparse - * https://github.com/skeeto/optparse - */ - #ifdef __cplusplus extern "C" { #endif diff --git a/lib/core/ogs-hash.c b/lib/core/ogs-hash.c index 922521351..e7f2f4038 100644 --- a/lib/core/ogs-hash.c +++ b/lib/core/ogs-hash.c @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-hash.h b/lib/core/ogs-hash.h index e2e2e32c5..ef97d152b 100644 --- a/lib/core/ogs-hash.h +++ b/lib/core/ogs-hash.h @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-misc.c b/lib/core/ogs-misc.c index 8ef79ade3..4b8834e97 100644 --- a/lib/core/ogs-misc.c +++ b/lib/core/ogs-misc.c @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-misc.h b/lib/core/ogs-misc.h index 5d6f8c876..a3664b716 100644 --- a/lib/core/ogs-misc.h +++ b/lib/core/ogs-misc.h @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-process.c b/lib/core/ogs-process.c index 3327503aa..f2fbef169 100644 --- a/lib/core/ogs-process.c +++ b/lib/core/ogs-process.c @@ -1,5 +1,35 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * The code is stolen from process.h + * https://github.com/sheredom/process.h + * + * This is free and unencumbered software released into the public domain. + * + * Anyone is free to copy, modify, publish, use, compile, sell, or + * distribute this software, either in source code form or as a compiled + * binary, for any purpose, commercial or non-commercial, and by any + * means. + * + * In jurisdictions that recognize copyright laws, the author or authors + * of this software dedicate any and all copyright interest in the + * software to the public domain. We make this dedication for the benefit + * of the public at large and to the detriment of our heirs and + * successors. We intend this dedication to be an overt act of + * relinquishment in perpetuity of all present and future rights to this + * software under copyright law. + * + * 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 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. + * + * For more information, please refer to + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-process.h b/lib/core/ogs-process.h index 0d0ab6175..5e07c2cbc 100644 --- a/lib/core/ogs-process.h +++ b/lib/core/ogs-process.h @@ -1,5 +1,35 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * The code is stolen from process.h + * https://github.com/sheredom/process.h + * + * This is free and unencumbered software released into the public domain. + * + * Anyone is free to copy, modify, publish, use, compile, sell, or + * distribute this software, either in source code form or as a compiled + * binary, for any purpose, commercial or non-commercial, and by any + * means. + * + * In jurisdictions that recognize copyright laws, the author or authors + * of this software dedicate any and all copyright interest in the + * software to the public domain. We make this dedication for the benefit + * of the public at large and to the detriment of our heirs and + * successors. We intend this dedication to be an overt act of + * relinquishment in perpetuity of all present and future rights to this + * software under copyright law. + * + * 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 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. + * + * For more information, please refer to + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * @@ -28,11 +58,6 @@ extern "C" { #endif -/* - * The following code is stolen from process.h - * https://github.com/sheredom/process.h - */ - #if defined(_WIN32) typedef struct _PROCESS_INFORMATION *LPPROCESS_INFORMATION; typedef struct _SECURITY_ATTRIBUTES *LPSECURITY_ATTRIBUTES; diff --git a/lib/core/ogs-queue.c b/lib/core/ogs-queue.c index c0b6ea3b6..7b26b350b 100644 --- a/lib/core/ogs-queue.c +++ b/lib/core/ogs-queue.c @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-queue.h b/lib/core/ogs-queue.h index ad66815a8..51c467d5b 100644 --- a/lib/core/ogs-queue.h +++ b/lib/core/ogs-queue.h @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-signal.c b/lib/core/ogs-signal.c index 6cda75552..5e5696054 100644 --- a/lib/core/ogs-signal.c +++ b/lib/core/ogs-signal.c @@ -1,3 +1,19 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* * Copyright (C) 2019 by Sukchan Lee * diff --git a/lib/core/ogs-signal.h b/lib/core/ogs-signal.h index a10d1182f..bb40edeaa 100644 --- a/lib/core/ogs-signal.h +++ b/lib/core/ogs-signal.h @@ -1,3 +1,19 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* * Copyright (C) 2019 by Sukchan Lee * diff --git a/lib/core/ogs-sockaddr.c b/lib/core/ogs-sockaddr.c index bf302b43e..8599dfa60 100644 --- a/lib/core/ogs-sockaddr.c +++ b/lib/core/ogs-sockaddr.c @@ -1,3 +1,19 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* * Copyright (C) 2019 by Sukchan Lee * diff --git a/lib/core/ogs-sockaddr.h b/lib/core/ogs-sockaddr.h index 72dcbd056..ae339f93d 100644 --- a/lib/core/ogs-sockaddr.h +++ b/lib/core/ogs-sockaddr.h @@ -1,3 +1,19 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* * Copyright (C) 2019 by Sukchan Lee * diff --git a/lib/core/ogs-strings.c b/lib/core/ogs-strings.c index e59173e62..1768265d0 100644 --- a/lib/core/ogs-strings.c +++ b/lib/core/ogs-strings.c @@ -1,3 +1,29 @@ +/** + * + * Orcania library + * + * Different functions for different purposes but that can be shared between + * other projects + * + * orcania.c: main functions definitions + * + * Copyright 2015-2020 Nicolas Mora + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; + * version 2.1 of the License. + * + * This library 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 library. If not, see . + * + */ + /* * Copyright (C) 2019 by Sukchan Lee * diff --git a/lib/core/ogs-strings.h b/lib/core/ogs-strings.h index 8caf7ad2e..460f11e1f 100644 --- a/lib/core/ogs-strings.h +++ b/lib/core/ogs-strings.h @@ -1,3 +1,29 @@ +/** + * + * Orcania library + * + * Different functions for different purposes but that can be shared between + * other projects + * + * orcania.c: main functions definitions + * + * Copyright 2015-2020 Nicolas Mora + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; + * version 2.1 of the License. + * + * This library 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 library. If not, see . + * + */ + /* * Copyright (C) 2019 by Sukchan Lee * @@ -55,6 +81,16 @@ void *ogs_memdup(const void *m, size_t n); char *ogs_cpystrn(char *dst, const char *src, size_t dst_size); +/* + * char *ogs_msprintf(const char *message, ...) + * char *mstrcatf(char *source, const char *message, ...) + * + * Orcania library + * Copyright 2015-2018 Nicolas Mora + * License: LGPL-2.1 + * + * https://github.com/babelouest/orcania.git + */ char *ogs_msprintf(const char *message, ...) OGS_GNUC_PRINTF(1, 2); char *ogs_mstrcatf(char *source, const char *message, ...) diff --git a/lib/core/ogs-time.c b/lib/core/ogs-time.c index a72a1ce2b..e5d389d9a 100644 --- a/lib/core/ogs-time.c +++ b/lib/core/ogs-time.c @@ -1,5 +1,45 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2013 MongoDB, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright Beman Dawes 2008 + * Copyright 2009-2010 Vicente J. Botet Escriba + * + * Distributed under the Boost Software License, Version 1.0. + * See http://www.boost.org/LICENSE_1_0.txt + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-time.h b/lib/core/ogs-time.h index 8b713cb8a..56eb56281 100644 --- a/lib/core/ogs-time.h +++ b/lib/core/ogs-time.h @@ -1,5 +1,45 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2013 MongoDB, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright Beman Dawes 2008 + * Copyright 2009-2010 Vicente J. Botet Escriba + * + * Distributed under the Boost Software License, Version 1.0. + * See http://www.boost.org/LICENSE_1_0.txt + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-uuid.c b/lib/core/ogs-uuid.c index 78e9ed3b7..34e49a6c2 100644 --- a/lib/core/ogs-uuid.c +++ b/lib/core/ogs-uuid.c @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/core/ogs-uuid.h b/lib/core/ogs-uuid.h index 99104416c..e095d8926 100644 --- a/lib/core/ogs-uuid.h +++ b/lib/core/ogs-uuid.h @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-aes-cmac.c b/lib/crypt/ogs-aes-cmac.c index 91740f646..7d199086d 100644 --- a/lib/crypt/ogs-aes-cmac.c +++ b/lib/crypt/ogs-aes-cmac.c @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-aes-cmac.h b/lib/crypt/ogs-aes-cmac.h index f16f65e89..6694519d0 100644 --- a/lib/crypt/ogs-aes-cmac.h +++ b/lib/crypt/ogs-aes-cmac.h @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-aes.c b/lib/crypt/ogs-aes.c index 96da5060b..730d36115 100644 --- a/lib/crypt/ogs-aes.c +++ b/lib/crypt/ogs-aes.c @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-aes.h b/lib/crypt/ogs-aes.h index 88a8dcfa6..90bc5e52b 100644 --- a/lib/crypt/ogs-aes.h +++ b/lib/crypt/ogs-aes.h @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-base64.c b/lib/crypt/ogs-base64.c index e319a5b6a..ed178f28b 100644 --- a/lib/crypt/ogs-base64.c +++ b/lib/crypt/ogs-base64.c @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019,2020 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-base64.h b/lib/crypt/ogs-base64.h index 64dd7c0b6..dae8a9061 100644 --- a/lib/crypt/ogs-base64.h +++ b/lib/crypt/ogs-base64.h @@ -1,5 +1,21 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* - * Copyright (C) 2019,2020 by Sukchan Lee + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha1-hmac.c b/lib/crypt/ogs-sha1-hmac.c index 8be091650..dcf469d22 100644 --- a/lib/crypt/ogs-sha1-hmac.c +++ b/lib/crypt/ogs-sha1-hmac.c @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha1-hmac.h b/lib/crypt/ogs-sha1-hmac.h index c26689b42..784ed8df2 100644 --- a/lib/crypt/ogs-sha1-hmac.h +++ b/lib/crypt/ogs-sha1-hmac.h @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha1.c b/lib/crypt/ogs-sha1.c index 14475e906..745f307ca 100644 --- a/lib/crypt/ogs-sha1.c +++ b/lib/crypt/ogs-sha1.c @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha1.h b/lib/crypt/ogs-sha1.h index fc64d0fc1..dfa016ee4 100644 --- a/lib/crypt/ogs-sha1.h +++ b/lib/crypt/ogs-sha1.h @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha2-hmac.c b/lib/crypt/ogs-sha2-hmac.c index 71262e903..f18596ab3 100644 --- a/lib/crypt/ogs-sha2-hmac.c +++ b/lib/crypt/ogs-sha2-hmac.c @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha2-hmac.h b/lib/crypt/ogs-sha2-hmac.h index dcd567027..ecfbddd30 100644 --- a/lib/crypt/ogs-sha2-hmac.h +++ b/lib/crypt/ogs-sha2-hmac.h @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha2.c b/lib/crypt/ogs-sha2.c index b6ceecb8d..70aac5bce 100644 --- a/lib/crypt/ogs-sha2.c +++ b/lib/crypt/ogs-sha2.c @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. * diff --git a/lib/crypt/ogs-sha2.h b/lib/crypt/ogs-sha2.h index c531d0c5a..e34551dbe 100644 --- a/lib/crypt/ogs-sha2.h +++ b/lib/crypt/ogs-sha2.h @@ -1,5 +1,14 @@ /* - * Copyright (C) 2019 by Sukchan Lee + * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the Apache License 2.0 (the "License"). You may not use + * this file except in compliance with the License. You can obtain a copy + * in the file LICENSE in the source distribution or at + * https://www.openssl.org/source/license.html + */ + +/* + * Copyright (C) 2019-2020 by Sukchan Lee * * This file is part of Open5GS. *