diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-08-07 13:32:20 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-08-07 13:32:20 +0100 |
commit | f1e53832fb37f2cf059b74139ce5de1dffc82651 (patch) | |
tree | 165a0e627708b7979dbf97e0844949a511c63ac0 /src | |
parent | 9964353d374817209248b8b77bceadfb689b4c0b (diff) | |
download | rspamd-f1e53832fb37f2cf059b74139ce5de1dffc82651.tar.gz rspamd-f1e53832fb37f2cf059b74139ce5de1dffc82651.zip |
[Minor] Update function docs
Diffstat (limited to 'src')
-rw-r--r-- | src/lua/lua_common.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/lua/lua_common.h b/src/lua/lua_common.h index 112fece5e..bf887e301 100644 --- a/src/lua/lua_common.h +++ b/src/lua/lua_common.h @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Vsevolod Stakhov + * + * 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 RSPAMD_LUA_H #define RSPAMD_LUA_H @@ -652,7 +668,7 @@ gchar *rspamd_lua_get_module_name(lua_State *L); * - f - lua_function, argument - int - position of the function on stack (not lua_registry) * - t - lua_text, argument - int - position of the lua_text on stack (not lua_registry) * @param L lua state -* @param cbref LUA_REGISTRY reference +* @param cbref LUA_REGISTRY reference (if it is -1 then a function on top of the stack is called - it must be removed by caller manually) * @param strloc where this function is called from * @param nret number of results (or LUA_MULTRET) * @param args arguments format string |