]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DOC: lua: copyrights
authorThierry Fournier <tfournier@arpalert.org>
Thu, 11 Feb 2016 16:57:57 +0000 (17:57 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 19 Feb 2016 12:24:21 +0000 (13:24 +0100)
src/hlua.c
src/hlua_fcn.c

index 11117205d86591216c11c2d1765351dbb52b3078..f1c937afa264438daf98887caedbd10ce9bf9172 100644 (file)
@@ -1,3 +1,15 @@
+/*
+ * Lua unsafe core engine
+ *
+ * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
 #include <sys/socket.h>
 
 #include <ctype.h>
index fdcac057775685606912fb02603b0e015968b83d..5adb128153e4ed42042f261ff470af95ca8ce68a 100644 (file)
@@ -1,4 +1,15 @@
-/* All the functions in this file runs with aLua stack, and can
+/*
+ * Lua safe functions
+ *
+ * Copyright 2015-2016 Thierry Fournier <tfournier@arpalert.org>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ *
+ * All the functions in this file runs with a Lua stack, and can
  * return with a longjmp. All of these function must be launched
  * in an environment able to catch a longjmp, otherwise a
  * critical error can be raised.