med, or low priority. For now, H, M, or L can indicate alpha 1, 2, or 3.
Perf changes fall between alpha 1 and 2.
+* Put the copyright(s) and license in a comment block at the top of each
+ source file (.h and .cc). Don't bother with trivial scripts and make
+ foo. Some interesting Lua code should get a comment block too. Copy and
+ paste exactly from src/main.h (don't reformat).
+
+* Put author, description, etc. in separate comment(s) following the
+ license. Do not put such comments in the middle of the license foo.
+
==== Logging
-* Messages intended for the user should not look like debug messages. In,
- other words, the function name should not be included.
+* Messages intended for the user should not look like debug messages. Eg,
+ the function name should not be included.
* Most debug messages should just be deleted.
-* Don't bang your messages (no !). The user feels bad enough about the
+* Don't bang your error messages (no !). The user feels bad enough about the
problem already w/o you shouting at him.
==== Types
---------------------------------------------------------------------------
--- Copyright (C) 2014 Cisco and/or its affiliates. All rights reserved.
+-- Copyright (C) 2014-2015 Cisco and/or its affiliates. All rights reserved.
--
--- This program is free software; you can redistribute it and/or modify
--- it under the terms of the GNU General Public License Version 2 as
--- published by the Free Software Foundation. You may not use, modify or
--- distribute this program under any other version of the GNU General
--- Public License.
+-- This program is free software; you can redistribute it and/or modify it
+-- under the terms of the GNU General Public License Version 2 as published
+-- by the Free Software Foundation. You may not use, modify or distribute
+-- this program under any other version of the GNU General Public License.
--
--- This program 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.
+-- This program 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 program; if not, write to the Free Software
--- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+-- You should have received a copy of the GNU General Public License along
+-- with this program; if not, write to the Free Software Foundation, Inc.,
+-- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
---------------------------------------------------------------------------
-- snort_config.lua author Russ Combs <rucombs@cisco.com>
---------------------------------------------------------------------------
--- Copyright (C) 2014 Cisco and/or its affiliates. All rights reserved.
+-- Copyright (C) 2014-2015 Cisco and/or its affiliates. All rights reserved.
--
--- This program is free software; you can redistribute it and/or modify
--- it under the terms of the GNU General Public License Version 2 as
--- published by the Free Software Foundation. You may not use, modify or
--- distribute this program under any other version of the GNU General
--- Public License.
+-- This program is free software; you can redistribute it and/or modify it
+-- under the terms of the GNU General Public License Version 2 as published
+-- by the Free Software Foundation. You may not use, modify or distribute
+-- this program under any other version of the GNU General Public License.
--
--- This program 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.
+-- This program 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 program; if not, write to the Free Software
--- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+-- You should have received a copy of the GNU General Public License along
+-- with this program; if not, write to the Free Software Foundation, Inc.,
+-- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
---------------------------------------------------------------------------
+-- snort_plugin.lua author Russ Combs <rucombs@cisco.com>
ffi = require("ffi")