# HG changeset patch # User John Tsiombikas # Date 1429390861 -10800 # Node ID 86f703031228dc26290aa43399f45d0ae4543b77 # Parent b13fda5c01bc7aebe4282acebe0f0dad12a647b4 Attribution headers diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/http.c --- a/libtinyweb/src/http.c Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/http.c Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #include #include #include diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/http.h --- a/libtinyweb/src/http.h Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/http.h Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #ifndef HTTP_H_ #define HTTP_H_ diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/logger.c --- a/libtinyweb/src/logger.c Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/logger.c Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #include #include #include diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/logger.h --- a/libtinyweb/src/logger.h Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/logger.h Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #ifndef LOGGER_H_ #define LOGGER_H_ diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/mime.c --- a/libtinyweb/src/mime.c Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/mime.c Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #include #include #include "mime.h" diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/mime.h --- a/libtinyweb/src/mime.h Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/mime.h Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #ifndef MIME_H_ #define MIME_H_ diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/rbtree.c --- a/libtinyweb/src/rbtree.c Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/rbtree.c Sun Apr 19 00:01:01 2015 +0300 @@ -1,9 +1,9 @@ -/* -rbtree - simple balanced binary search tree (red-black tree) library. -Copyright (C) 2011-2014 John Tsiombikas - -rbtree is free software, feel free to use, modify, and redistribute it, under -the terms of the 3-clause BSD license. See COPYING for details. +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. */ #include #include diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/rbtree.h --- a/libtinyweb/src/rbtree.h Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/rbtree.h Sun Apr 19 00:01:01 2015 +0300 @@ -1,9 +1,9 @@ -/* -rbtree - simple balanced binary search tree (red-black tree) library. -Copyright (C) 2011-2014 John Tsiombikas - -rbtree is free software, feel free to use, modify, and redistribute it, under -the terms of the 3-clause BSD license. See COPYING for details. +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. */ #ifndef RBTREE_H_ #define RBTREE_H_ diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/tinyweb.c --- a/libtinyweb/src/tinyweb.c Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/tinyweb.c Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #include #include #include diff -r b13fda5c01bc -r 86f703031228 libtinyweb/src/tinyweb.h --- a/libtinyweb/src/tinyweb.h Sat Apr 18 23:55:34 2015 +0300 +++ b/libtinyweb/src/tinyweb.h Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #ifndef TINYWEB_H_ #define TINYWEB_H_ diff -r b13fda5c01bc -r 86f703031228 src/main.c --- a/src/main.c Sat Apr 18 23:55:34 2015 +0300 +++ b/src/main.c Sun Apr 19 00:01:01 2015 +0300 @@ -1,3 +1,10 @@ +/* tinyweb - tiny web server library and daemon + * Author: John Tsiombikas + * + * This program is placed in the public domain. Feel free to use it any + * way you like. Mentions and retaining this attribution header will be + * appreciated, but not required. + */ #include #include #include