diff options
author | socialgraph <socialgraph@yandex-team.com> | 2022-09-08 14:28:30 +0300 |
---|---|---|
committer | socialgraph <socialgraph@yandex-team.com> | 2022-09-08 14:28:30 +0300 |
commit | dfe3fdb76414445f7674788b36e925d49280e9f1 (patch) | |
tree | 844d2f9dd199440f700d7ef28e1d208b67f827b7 /library/cpp/uri/common.h | |
parent | 1e2781d41b8073e19248305f6d51888dfa6d469d (diff) | |
download | ydb-dfe3fdb76414445f7674788b36e925d49280e9f1.tar.gz |
use hash bang flag
use hash bang flag
Diffstat (limited to 'library/cpp/uri/common.h')
-rw-r--r-- | library/cpp/uri/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/cpp/uri/common.h b/library/cpp/uri/common.h index 5dbae78226b..f990809659f 100644 --- a/library/cpp/uri/common.h +++ b/library/cpp/uri/common.h @@ -58,6 +58,7 @@ namespace NUri { FIELD_FLAG(Path), FIELD_FLAG(Query), FIELD_FLAG(Frag), + FIELD_FLAG(HashBang), FIELD_FLAG(UrlMAX), FIELD_FLAG(HostAscii), FIELD_FLAG(AllMAX), @@ -67,6 +68,7 @@ namespace NUri { FlagFragment = FlagFrag, FlagAction = FlagScheme | FlagHostPort | FlagPath, FlagNoFrag = FlagAction | FlagQuery, + FlagFragmentLess = FlagAction | FlagQuery | FlagHashBang, FlagUrlFields = FlagUrlMAX - 1, FlagAll = FlagUrlFields, // obsolete, for backwards compatibility FlagAllFields = FlagAllMAX - 1 |