Browse Source

Merge pull request #3115 from citrin/fix-lua-url-doc

Fix docs for rspamd_url lua module
tags/2.1
Vsevolod Stakhov 4 years ago
parent
commit
c52e22c7ce
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/lua/lua_url.c

+ 2
- 1
src/lua/lua_url.c View File

/*** /***
* @function url.init(tld_file) * @function url.init(tld_file)
* Initialize url library if not initialized yet by Rspamd * Initialize url library if not initialized yet by Rspamd
* @param {string} tld_file for url library
* @param {string} tld_file path to effective_tld_names.dat file (public suffix list)
* @return nothing * @return nothing
*/ */
static gint static gint
* - `unnormalised`: URL has some unicode unnormalities * - `unnormalised`: URL has some unicode unnormalities
* - `zw_spaces`: URL has some zero width spaces * - `zw_spaces`: URL has some zero width spaces
* - `url_displayed`: URL has some other url-like string in visible part * - `url_displayed`: URL has some other url-like string in visible part
* - `image`: URL is from src attribute of img HTML tag
* @return {table} URL flags * @return {table} URL flags
*/ */
#define PUSH_FLAG(fl, name) do { \ #define PUSH_FLAG(fl, name) do { \

Loading…
Cancel
Save