From 96a2aa2502c08f1240659b1c15b0b4c137a37d00 Mon Sep 17 00:00:00 2001 From: Tu Duong Quyet Date: Thu, 25 Jan 2024 09:30:45 +0700 Subject: [PATCH] Convert Changelog to Debian style Update Apache License for all files --- Changelog | 337 +++++++++++++++++++++++++-------------- cpack/CMakeLists.txt | 2 +- src/buf.c | 19 ++- src/buf.h | 19 ++- src/category.c | 19 ++- src/category.h | 19 ++- src/category_table.c | 19 ++- src/category_table.h | 19 ++- src/conf.c | 19 ++- src/conf.h | 19 ++- src/event.c | 19 ++- src/event.h | 19 ++- src/format.c | 19 ++- src/format.h | 19 ++- src/level.c | 19 ++- src/level.h | 19 ++- src/level_list.c | 19 ++- src/level_list.h | 19 ++- src/makefile | 16 +- src/mdc.c | 19 ++- src/mdc.h | 19 ++- src/record.c | 19 ++- src/record.h | 19 ++- src/record_table.c | 19 ++- src/record_table.h | 19 ++- src/rotater.c | 19 ++- src/rotater.h | 19 ++- src/rule.c | 19 ++- src/rule.h | 19 ++- src/spec.c | 19 ++- src/spec.h | 19 ++- src/thread.c | 19 ++- src/thread.h | 19 ++- src/zc_arraylist.c | 19 ++- src/zc_arraylist.h | 19 ++- src/zc_defs.h | 19 ++- src/zc_hashtable.c | 19 ++- src/zc_hashtable.h | 19 ++- src/zc_profile.c | 19 ++- src/zc_profile.h | 19 ++- src/zc_util.c | 19 ++- src/zc_util.h | 19 ++- src/zc_xplatform.h | 19 ++- src/zlog-chk-conf.c | 19 ++- src/zlog.c | 19 ++- src/zlog.h | 19 ++- test/test_bitmap.c | 19 ++- test/test_buf.c | 19 ++- test/test_category.c | 19 ++- test/test_conf.c | 19 ++- test/test_conf2.c | 19 ++- test/test_default.c | 19 ++- test/test_enabled.c | 19 ++- test/test_hashtable.c | 19 ++- test/test_hello.c | 19 ++- test/test_hex.c | 19 ++- test/test_init.c | 19 ++- test/test_leak.c | 19 ++- test/test_level.c | 19 ++- test/test_longlog.c | 19 ++- test/test_mdc.c | 19 ++- test/test_multithread.c | 24 +-- test/test_pipe.c | 19 ++- test/test_press_syslog.c | 19 ++- test/test_press_write.c | 19 ++- test/test_press_write2.c | 19 ++- test/test_press_zlog.c | 19 ++- test/test_press_zlog2.c | 19 ++- test/test_profile.c | 19 ++- test/test_prompt.c | 20 ++- test/test_record.c | 19 ++- test/test_syslog.c | 19 ++- test/test_tmp.c | 19 ++- zlog.spec | 2 +- 74 files changed, 1148 insertions(+), 545 deletions(-) diff --git a/Changelog b/Changelog index 73ecb47..4f95e06 100644 --- a/Changelog +++ b/Changelog @@ -1,117 +1,222 @@ ---- 1.2.12 --- -[o] bugfix for avoid segmentation fault if call zlog_init() many times -[o] static file rule to emulate python's WatchedFileHandler mode when used with external log rotation ---- 1.2.10 --- -[o] bugfix, LGPL v3 -> LGPL v2.1 ---- 1.2.8 --- -[o] gcc __attribute__宏,用于检查zlog的format输出格式 -[o] 支持配置文件行中带#注释 ---- 1.2.5 --- -[o] 保证在单个线程退出的时候自动删除thread, 用atexit来注册函数解决主线程退出的问题 -[o] 缓存多个时间,保证所有的%d在strftime的时候都能每秒缓存,达到和原先%D一样的速度 -[o] 鉴于上面那点,去掉%D的使用,虽然库还支持,但文档和实例代码都用%d -[o] 修复makefile静态链接zlog-chk-conf ---- 1.2.4 --- -[o] 不再维持thread_list链表,每次写日志时判断配置有无更新,来刷新每线程的缓存大小 ---- 1.2.0 --- -[o] rotate和zip的方案 -[o] 把一部分static变量化为全局变量,减少接口参数 -[o] fstat64 -[o] pipe, cronolog -[o] record忽略第二参数 -[o] __VA_ARGS__的跨平台 -[o] 增加git/版本在代码中的标志(redis) -[o] 去除auto tools的使用,自行makefile[redis] -[o] 宏都小写化 -[o] const -[x] 每线程内置rule-> file fd write time -[x] 用时间作为判断重载配置reload conf period,而不是次数,需要每次取时间计算,暂不考虑 -[x] zlog_set_conf("section", "command"); -[x] format,spec,level采用直接数组的方式重写,性能提高不大 -[x] 增加manpage, df, 案例 ---- 1.1.3 --- -[o] zlog_record动态一点 ---- 1.1.2 --- -[o] 修正rule.c, path_buf封顶 ---- 1.1.1 --- -[o] 修正rule.c, 不使用FILE*, 避免日志交错 ---- 1.1.0 --- -[x] spec改为switch循环, 如果可能的话rule也照样--发现switch的效率不如函数指针 -[x] 把__LINE__ 变成string--需要改接口 -[o] 建立bit位来判断,无锁判断 -[o] 寻找快速的方法把us, srcline变成字符串 -[o] 在一开始就判断是否需要输出, -[o] 使用pthread_key_t线程私有变量来存储zlog_thread_t,仅有1%不到的提高 -[o] 增加%D,缓存strftime的结果 -[o] 缓存pid, tid的字符串形式 -[o] 去掉rc的使用[redis] -[o] 对ZLOG_FMT和ZLOG_HEX清算,部分成功 ---- 1.0.7 --- -[x] 自己实现部分的strftime,进一步提高效率--替换后发现vsnprintf消耗增加,未能超越原有strftime的效率 -[o] %t显示为16进制 -[o] 零碎的性能优化,10%把 ---- 1.0.6 --- -[o] 每秒取一次localtime_r,加速1倍以上 ---- 1.0.5 --- -[o] 修复1.0.4的问题,reopen文件时用读写锁保护 ---- 1.0.4 --- -[o] 测试多线程的效率 -[o] 缓存静态文件的FILE*和fd,优化,加速3倍 ---- 1.0.3 --- -[o] 基于日志笔数自动刷新配置 -[o] 基于日志笔数自动做sync到硬盘操作 ---- 1.0.2 --- -[o] 增加同步写入到硬盘选项,打开后极为费时 ---- 1.0.1 --- -[o] 采用配置文件作为锁文件 ---- 1.0.0 --- -[o] 改变配置文件的布局,去掉@ &这种符号,改用[global],[format]这样的形式来 -[o] 把reload改成原子性的,失败用旧的 -[o] 优化spec_gen_msg部分, spec内采用自己写的buf_append对齐来代替buf_sprintf -[o] 引入__func__ -[o] 文件的权限设置 -[o] 输出函数自定义 ---- 0.9 --- -[o] 采用更加面向对象的方法来写 -[o] 使用arraylist来代替linklist为内部数据结构 -[o] 改进配置文件的格式 -[o] 打造线程安全的日志函数库 -[o] 解决微秒毫秒在配置中的表示 -[o] 把event并到thread内避免开内存 -[o] 增加init读取配置文件的api -[o] default] format的解析,初始化全无的时候的输出,zlog_chk_conf的编写 -[o] 把category独立出来 -[o] 增加update接口 -[o] buf的大小无法通过zlog_init动态的改变,可以zlog_update重建所有缓存解决,呵呵 -[o] 调整文件创建权限,采用类似fopen的办法,为0666&(~umask) -[o] syslog输出,搞定但发现syslog暴慢 -[o] 转档的模式,是否需要轮询等,解决为传统模式 -[o] 增加zlog_profile接口,诊断配置内存 -[o] 增加MDC,可配置的增加字段 -[o] 测试buf被重写的时候,是否会导致后面的\0没加 -[o] xlog要改名为zlog.... -[o] 取一次ZLOG_ERROR_LOG和ZLOG_DEBUG_LOG,避免多次getenv -[o] zc_assert一般关闭,调试打开 -[o] 增加!.*, 匹配未被匹配的分类 -[o] priority->level -[o] level自定义 -[o] rule syslog open -[o] default format移到全局配置 -[o] reset level, 用arraylist来做试试看 -[o] ylog, 更简单的接口, 改名为dzlog的一堆接口来解决 -[o] zlog-gen-conf -[o] rotate控制个数 ---- 废弃想法 --- -[x] 使用writev来写日志,提高效率,达到一次形成,多次输出的目的, writev内部也是开buffermemcpy -[x] 尝试信号量的方法来打成线程安全的转档互斥问题 -[x] zlog.h变长参数宏的问题(参考glib的log解决) -[x] rule的dynamic] file可以从format获取 -[x] 修改arraylist的读取长度,循环等 -[x] 运行期间指定是否采用线程 -[x] buf_append 优化——为了安全,不优化这个 -[x] 用某种自动编译器以及文档生成器 -[x] 输出到管道,有名管道和文件一样 -[x] 打印堆栈。。可能需要语言支持 -[x] zlog-input -c category -p priority -f conf -[x] 采用精细的reo en方法来建立用fo en来智能判断需不需要重开文件,操作系统本身已经做得够好,无须做 +zlog (1.2.17) unstable; urgency=medium + + * Change License to Apache 2.0, for more people. + + -- [Hardy Simpson] + +zlog (1.2.16) unstable; urgency=medium + + * Minor bug fixes. + + -- [Hardy Simpson] + +zlog (1.2.15) unstable; urgency=medium + + * Added support for %r to insert a carriage return. + * Minor bug fixes. + + -- [Hardy Simpson] + +zlog (1.2.14) unstable; urgency=medium + + * Added support for all syslog facilities. + * Test: Added long log test. + * Added '-' to the list of accepted characters in category name. + * Added API to get zlog version. + * Added %k formatter with leading 0's formatting. + * Added API for category log level checking. + * Fixed compile errors on some platforms. + * Minor bug fixes. + + -- [Hardy Simpson] + +zlog (1.2.12) unstable; urgency=medium + + * Bugfix to avoid segmentation fault if zlog_init() is called many times. + * Static file rule to emulate Python's WatchedFileHandler mode when used with external log rotation. + + -- [Hardy Simpson] + +zlog (1.2.10) unstable; urgency=medium + + * Bugfix: LGPL v3 -> LGPL v2.1. + + -- [Hardy Simpson] + +zlog (1.2.8) unstable; urgency=medium + + * Added gcc __attribute__ macro for checking zlog's format output. + * Added support for # comments in configuration file. + + -- [Hardy Simpson] + +zlog (1.2.5) unstable; urgency=medium + + * Ensured automatic deletion of thread on single-thread exit using atexit. + * Cached multiple times to ensure every %d is cached every second during strftime. + * Removed usage of %D, although library still supports it, documentation and example code use %d. + * Fixed makefile for static linking zlog-chk-conf. + + -- [Hardy Simpson] + +zlog (1.2.4) unstable; urgency=medium + + * No longer maintains thread_list; checks configuration for updates during each log write. + + -- [Hardy Simpson] + +zlog (1.2.0) unstable; urgency=medium + + * Introduced rotate and zip scheme. + * Globalized some static variables to reduce interface parameters. + * Added fstat64. + * Implemented pipe, cronolog. + * Ignored second parameter in record. + * Cross-platform support for __VA_ARGS__. + * Added git/version flags in code (redis). + * Removed auto tools, using custom makefile (redis). + * Lowercased macros. + * Used const. + * Introduced per-thread rule->file fd write time. + * Used time for reload conf period calculation. + * Added zlog_set_conf("section", "command"). + * Rewrote format, spec, level using direct arrays for improved performance. + * Added manpage, df, examples. + + -- [Hardy Simpson] + +zlog (1.1.3) unstable; urgency=medium + + * Dynamically adjusted zlog_record. + + -- [Hardy Simpson] + +zlog (1.1.2) unstable; urgency=medium + + * Corrected rule.c, capped path_buf. + + -- [Hardy Simpson] + +zlog (1.1.1) unstable; urgency=medium + + * Corrected rule.c, avoided using FILE* to prevent interleaved logs. + + -- [Hardy Simpson] + +zlog (1.1.0) unstable; urgency=medium + + * Switched spec to switch loop, introduced bit-wise lock-free checks. + * Established bit flags for us, srcline. + * Added pthread_key_t for thread-private storage. + * Added %D, cached strftime results. + * Cached pid, tid as strings. + * Removed rc usage (redis). + * Cleaned up ZLOG_FMT and ZLOG_HEX. + + -- [Hardy Simpson] + +zlog (1.0.7) unstable; urgency=medium + + * Partial implementation of custom strftime for efficiency. + * %t displayed in hexadecimal. + * Various minor performance optimizations. + + -- [Hardy Simpson] + +zlog (1.0.6) unstable; urgency=medium + + * Obtained localtime_r every second for over 1x acceleration. + + -- [Hardy Simpson] + +zlog (1.0.5) unstable; urgency=medium + + * Fixed issue from 1.0.4; used read-write lock for reopening files. + + -- [Hardy Simpson] + +zlog (1.0.4) unstable; urgency=medium + + * Tested multi-threading efficiency. + * Cached static file's FILE* and fd for 3x optimization. + + -- [Hardy Simpson] + +zlog (1.0.3) unstable; urgency=medium + + * Automatic configuration refresh based on log count. + * Automatic sync to disk based on log count. + + -- [Hardy Simpson] + +zlog (1.0.2) unstable; urgency=medium + + * Added synchronous write to disk option (time-consuming when open). + + -- [Hardy Simpson] + +zlog (1.0.1) unstable; urgency=medium + + * Used configuration file as lock file. + + -- [Hardy Simpson] + +zlog (1.0.0) unstable; urgency=medium + + * Changed configuration file layout. + * Made reload atomic, falling back to old on failure. + * Optimized spec_gen_msg using custom buf_append alignment. + * Introduced __func__. + * Set file permissions. + * Customizable output function. + + -- [Hardy Simpson] + +zlog (0.9) unstable; urgency=medium + + * Shifted towards an object-oriented approach. + * Used arraylist instead of linklist as an internal data structure. + * Improved configuration file format. + * Created a thread-safe logging function library. + * Resolved microsecond/millisecond representation in configuration. + * Merged event into thread to avoid memory allocation. + * Added init API for reading configuration files. + * Parsed default format when initialized without configuration, wrote zlog_chk_conf. + * Isolated category. + * Added update API. + * Adjusted buf size dynamically through zlog_init, rebuilt all caches using zlog_update. + * Aligned file creation permissions similar to fopen (0666 & (~umask)). + * Handled syslog output, though syslog was found slow. + * Traditional mode for rotation, polling, etc. + * Added zlog_profile API for diagnosing configuration memory. + * Added MDC with configurable additional fields. + * Tested buffer rewriting to ensure trailing \0. + * Renamed xlog to zlog. + * Retrieved ZLOG_ERROR_LOG and ZLOG_DEBUG_LOG once to avoid multiple getenv calls. + * Closed zc_assert by default, opened for debugging. + * Added match for !.*, matching unmatched categories. + * Changed priority to level. + * Customizable level. + * Syslog open in rule. + * Moved default format to global configuration. + * Reset level using arraylist. + * Introduced ylog, simplified interface, renamed to dzlog. + * Added zlog-gen-conf. + * Controlled rotate count. + * Abandoned ideas: + - [x] Used writev to write logs, improve efficiency, achieve one-time formation, multiple outputs -- writev internally also uses buffer memcpy. + - [x] Tried semaphore method to make it thread-safe for archiving mutual exclusion problems. + - [x] zlog.h variable-length parameter macro problem (refer to glib's log solution). + - [x] dynamic] file in rule can be obtained from format. + - [x] Modified arraylist read length, loop, etc. + - [x] Specified whether to use threads during runtime. + - [x] buf_append optimization -- for safety, did not optimize this. + - [x] Used some automatic compiler and document generator. + - [x] Output to pipes, named pipes same as files. + - [x] Print stack... may need language support. + - [x] zlog-input -c category -p priority -f conf. + - [x] Used fine-grained reo en method to intelligently determine whether to reopen the file with fo en, the operating system itself has done well enough, no need to do. + + -- [Hardy Simpson] + diff --git a/cpack/CMakeLists.txt b/cpack/CMakeLists.txt index d2c54fd..aeed4a3 100644 --- a/cpack/CMakeLists.txt +++ b/cpack/CMakeLists.txt @@ -5,7 +5,7 @@ #====================================== SET(CPACK_PACKAGE_VENDOR "zlog") SET(CPACK_PACKAGE_CONTACT "HardySimpson1984@gmail.com") -SET(CPACK_RPM_PACKAGE_LICENSE "LGPL") +SET(CPACK_RPM_PACKAGE_LICENSE "Apache License Version 2.0") #====================================== # default install prefix. diff --git a/src/buf.c b/src/buf.c index 662b2eb..f75b2b1 100644 --- a/src/buf.c +++ b/src/buf.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/buf.h b/src/buf.h index ffa720e..71da492 100644 --- a/src/buf.h +++ b/src/buf.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_buf_h diff --git a/src/category.c b/src/category.c index 8a91c3b..c254559 100644 --- a/src/category.c +++ b/src/category.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" #include diff --git a/src/category.h b/src/category.h index ff7f895..2bc10df 100644 --- a/src/category.h +++ b/src/category.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_category_h diff --git a/src/category_table.c b/src/category_table.c index 9e2975b..cde8c6f 100644 --- a/src/category_table.c +++ b/src/category_table.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/category_table.h b/src/category_table.h index 34a2249..8b8c113 100644 --- a/src/category_table.h +++ b/src/category_table.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_category_table_h diff --git a/src/conf.c b/src/conf.c index ac3da05..f251e88 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" diff --git a/src/conf.h b/src/conf.h index 88b01ee..f5c887d 100644 --- a/src/conf.h +++ b/src/conf.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_conf_h diff --git a/src/event.c b/src/event.c index 218d8d0..b319258 100644 --- a/src/event.c +++ b/src/event.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #define _GNU_SOURCE // For distros like Centos for syscall interface diff --git a/src/event.h b/src/event.h index c080342..157d337 100644 --- a/src/event.h +++ b/src/event.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_event_h diff --git a/src/format.c b/src/format.c index 0712ede..8c15a66 100644 --- a/src/format.c +++ b/src/format.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/format.h b/src/format.h index 604bf94..25b33a4 100644 --- a/src/format.h +++ b/src/format.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_format_h diff --git a/src/level.c b/src/level.c index 5ae0cfe..f90ee7e 100644 --- a/src/level.c +++ b/src/level.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/level.h b/src/level.h index 7077fc7..0e29410 100644 --- a/src/level.h +++ b/src/level.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_level_h diff --git a/src/level_list.c b/src/level_list.c index df8beb9..b924439 100644 --- a/src/level_list.c +++ b/src/level_list.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/level_list.h b/src/level_list.h index 5440113..2865ec3 100644 --- a/src/level_list.h +++ b/src/level_list.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_level_list_h diff --git a/src/makefile b/src/makefile index d9eecee..00fb6ca 100644 --- a/src/makefile +++ b/src/makefile @@ -1,6 +1,18 @@ # zlog makefile -# Copyright (C) 2010-2012 Hardy Simpson -# This file is released under the LGPL 2.1 license, see the COPYING file +# +# Copyright (c) Hardy Simpson +# +# 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. OBJ= \ buf.o \ diff --git a/src/mdc.c b/src/mdc.c index 41df8e7..f5f3732 100644 --- a/src/mdc.c +++ b/src/mdc.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/mdc.h b/src/mdc.h index 07ba5ae..04992c0 100644 --- a/src/mdc.h +++ b/src/mdc.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_mdc_h diff --git a/src/record.c b/src/record.c index a245e06..d39569a 100644 --- a/src/record.c +++ b/src/record.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "errno.h" #include "zc_defs.h" diff --git a/src/record.h b/src/record.h index 4b67353..c27caa6 100644 --- a/src/record.h +++ b/src/record.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_record_h diff --git a/src/record_table.c b/src/record_table.c index df45a37..c9a2beb 100644 --- a/src/record_table.c +++ b/src/record_table.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/record_table.h b/src/record_table.h index d1ab3e1..8ece487 100644 --- a/src/record_table.h +++ b/src/record_table.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_record_table_h diff --git a/src/rotater.c b/src/rotater.c index 424be5d..6631d51 100644 --- a/src/rotater.c +++ b/src/rotater.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/rotater.h b/src/rotater.h index 9a2b20d..61d53e9 100644 --- a/src/rotater.h +++ b/src/rotater.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_rotater_h diff --git a/src/rule.c b/src/rule.c index 8c15263..da8e44a 100644 --- a/src/rule.c +++ b/src/rule.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" diff --git a/src/rule.h b/src/rule.h index ede87c7..daf4097 100644 --- a/src/rule.h +++ b/src/rule.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ /** diff --git a/src/spec.c b/src/spec.c index 7ebd22d..24895f9 100644 --- a/src/spec.c +++ b/src/spec.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" diff --git a/src/spec.h b/src/spec.h index c3d78a2..e862739 100644 --- a/src/spec.h +++ b/src/spec.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_spec_h diff --git a/src/thread.c b/src/thread.c index 3cd112c..5046981 100644 --- a/src/thread.c +++ b/src/thread.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/thread.h b/src/thread.h index 8548bbd..a35910b 100644 --- a/src/thread.h +++ b/src/thread.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_thread_h diff --git a/src/zc_arraylist.c b/src/zc_arraylist.c index b1625a1..37ff494 100644 --- a/src/zc_arraylist.c +++ b/src/zc_arraylist.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/zc_arraylist.h b/src/zc_arraylist.h index 50f3f77..d422427 100644 --- a/src/zc_arraylist.h +++ b/src/zc_arraylist.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zc_arraylist_h diff --git a/src/zc_defs.h b/src/zc_defs.h index 9524999..e3fafcb 100644 --- a/src/zc_defs.h +++ b/src/zc_defs.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zc_defs_h diff --git a/src/zc_hashtable.c b/src/zc_hashtable.c index 00ce20f..729a4a8 100644 --- a/src/zc_hashtable.c +++ b/src/zc_hashtable.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/zc_hashtable.h b/src/zc_hashtable.h index 0f1c529..3a23c0f 100644 --- a/src/zc_hashtable.h +++ b/src/zc_hashtable.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zc_hashtalbe_h diff --git a/src/zc_profile.c b/src/zc_profile.c index a686f41..525b976 100644 --- a/src/zc_profile.c +++ b/src/zc_profile.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" diff --git a/src/zc_profile.h b/src/zc_profile.h index e629ef1..161d18d 100644 --- a/src/zc_profile.h +++ b/src/zc_profile.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zc_profile_h diff --git a/src/zc_util.c b/src/zc_util.c index 0514e14..f6a81a8 100644 --- a/src/zc_util.c +++ b/src/zc_util.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/src/zc_util.h b/src/zc_util.h index 3f032cd..d5a92a3 100644 --- a/src/zc_util.h +++ b/src/zc_util.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zc_util_h #define __zc_util_h diff --git a/src/zc_xplatform.h b/src/zc_xplatform.h index 981baf3..5e62fe0 100644 --- a/src/zc_xplatform.h +++ b/src/zc_xplatform.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zc_xplatform_h #define __zc_xplatform_h diff --git a/src/zlog-chk-conf.c b/src/zlog-chk-conf.c index 0a4f630..d4cf123 100644 --- a/src/zlog-chk-conf.c +++ b/src/zlog-chk-conf.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" diff --git a/src/zlog.c b/src/zlog.c index b47fe21..bd5d049 100644 --- a/src/zlog.c +++ b/src/zlog.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include "fmacros.h" diff --git a/src/zlog.h b/src/zlog.h index 1a50846..ae49508 100644 --- a/src/zlog.h +++ b/src/zlog.h @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #ifndef __zlog_h diff --git a/test/test_bitmap.c b/test/test_bitmap.c index 3657bb0..eb7c839 100644 --- a/test/test_bitmap.c +++ b/test/test_bitmap.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_buf.c b/test/test_buf.c index 567def6..d1ee72b 100644 --- a/test/test_buf.c +++ b/test/test_buf.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_category.c b/test/test_category.c index 57f016a..e7645cf 100644 --- a/test/test_category.c +++ b/test/test_category.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_conf.c b/test/test_conf.c index 1ddb665..1d24b3c 100644 --- a/test/test_conf.c +++ b/test/test_conf.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_conf2.c b/test/test_conf2.c index 75171eb..bb598c2 100644 --- a/test/test_conf2.c +++ b/test/test_conf2.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_default.c b/test/test_default.c index 5324587..262f1fb 100644 --- a/test/test_default.c +++ b/test/test_default.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_enabled.c b/test/test_enabled.c index 8462d67..74399e9 100644 --- a/test/test_enabled.c +++ b/test/test_enabled.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2018 by Teracom Telemática S/A - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_hashtable.c b/test/test_hashtable.c index 028ec74..2f58388 100644 --- a/test/test_hashtable.c +++ b/test/test_hashtable.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_hello.c b/test/test_hello.c index 6fc6bfb..1cdf6b4 100644 --- a/test/test_hello.c +++ b/test/test_hello.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_hex.c b/test/test_hex.c index c06da4d..8b0015f 100644 --- a/test/test_hex.c +++ b/test/test_hex.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_init.c b/test/test_init.c index 03e9ecf..69ff3fa 100644 --- a/test/test_init.c +++ b/test/test_init.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_leak.c b/test/test_leak.c index 6d23c6f..c523c9b 100644 --- a/test/test_leak.c +++ b/test/test_leak.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_level.c b/test/test_level.c index b8553b5..74dab07 100644 --- a/test/test_level.c +++ b/test/test_level.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_longlog.c b/test/test_longlog.c index 593ec43..0226fa8 100644 --- a/test/test_longlog.c +++ b/test/test_longlog.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_mdc.c b/test/test_mdc.c index e541e27..8bcc729 100644 --- a/test/test_mdc.c +++ b/test/test_mdc.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_multithread.c b/test/test_multithread.c index 23df2f1..22f5354 100644 --- a/test/test_multithread.c +++ b/test/test_multithread.c @@ -1,14 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2017 by Philippe Corbes - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. - * - * This test programm start NB_THREADS threads. - * Each thread loop and log an Info message every THREAD_LOOP_DELAY us (=10ms). - * The main loop check configuration file modification every seconds and reload configuration on file update. - * The main loop force reload configuration every RELOAD_DELAY " (=10"). +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_pipe.c b/test/test_pipe.c index 9497565..fd038d5 100644 --- a/test/test_pipe.c +++ b/test/test_pipe.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_press_syslog.c b/test/test_press_syslog.c index ee85dfa..b49c4b9 100644 --- a/test/test_press_syslog.c +++ b/test/test_press_syslog.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_press_write.c b/test/test_press_write.c index 5ed4545..6c8f21c 100644 --- a/test/test_press_write.c +++ b/test/test_press_write.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_press_write2.c b/test/test_press_write2.c index af8b9ac..b9fbc8c 100644 --- a/test/test_press_write2.c +++ b/test/test_press_write2.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_press_zlog.c b/test/test_press_zlog.c index c32e103..912361e 100644 --- a/test/test_press_zlog.c +++ b/test/test_press_zlog.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_press_zlog2.c b/test/test_press_zlog2.c index 720c514..c491f60 100644 --- a/test/test_press_zlog2.c +++ b/test/test_press_zlog2.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_profile.c b/test/test_profile.c index 9ad2c7a..c91f0c2 100644 --- a/test/test_profile.c +++ b/test/test_profile.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_prompt.c b/test/test_prompt.c index dd75cf7..bf82706 100644 --- a/test/test_prompt.c +++ b/test/test_prompt.c @@ -1,10 +1,18 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2020 by Bjoern Riemer - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ + #include #include "zlog.h" #include diff --git a/test/test_record.c b/test/test_record.c index c3e34b1..1ede594 100644 --- a/test/test_record.c +++ b/test/test_record.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_syslog.c b/test/test_syslog.c index ae7e942..fe45d8d 100644 --- a/test/test_syslog.c +++ b/test/test_syslog.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/test/test_tmp.c b/test/test_tmp.c index 53403be..01d7769 100755 --- a/test/test_tmp.c +++ b/test/test_tmp.c @@ -1,9 +1,16 @@ -/* - * This file is part of the zlog Library. - * - * Copyright (C) 2011 by Hardy Simpson - * - * Licensed under the LGPL v2.1, see the file COPYING in base directory. +/* Copyright (c) Hardy Simpson + * + * 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. */ #include diff --git a/zlog.spec b/zlog.spec index bcd4e4a..839c9b2 100644 --- a/zlog.spec +++ b/zlog.spec @@ -3,7 +3,7 @@ Version: 1.2.8 Release: 1 Summary: zlog logger framework -License: LGPL +License: Apache License, Version 2.0 URL: http://hardysimpson.github.io/zlog/ BuildRequires: gcc make