aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver/url.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-03-26 11:38:03 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-03-26 11:38:03 +0100
commit3f7d0c75dbe19df430c15a5ac37ce39a9350f8a8 (patch)
treeb20065472e410d16775f43369d6610962aa6fad9 /src/libserver/url.h
parentabe4ed805d3c48d1d5ff5fe2e28c15a1eeb69540 (diff)
downloadrspamd-3f7d0c75dbe19df430c15a5ac37ce39a9350f8a8.tar.gz
rspamd-3f7d0c75dbe19df430c15a5ac37ce39a9350f8a8.zip
[Minor] Add definition for schema-less urls
Issue: #2090 Closes: #2090
Diffstat (limited to 'src/libserver/url.h')
-rw-r--r--src/libserver/url.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libserver/url.h b/src/libserver/url.h
index 3c0ff7599..e6ccfc0f9 100644
--- a/src/libserver/url.h
+++ b/src/libserver/url.h
@@ -24,7 +24,8 @@ enum rspamd_url_flags {
RSPAMD_URL_FLAG_MISSINGSLASHES = 1 << 11,
RSPAMD_URL_FLAG_IDN = 1 << 12,
RSPAMD_URL_FLAG_HAS_PORT = 1 << 13,
- RSPAMD_URL_FLAG_HAS_USER = 1 << 12,
+ RSPAMD_URL_FLAG_HAS_USER = 1 << 14,
+ RSPAMD_URL_FLAG_SCHEMALESS = 1 << 15,
};
struct rspamd_url_tag {