diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-07-22 21:04:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-22 21:04:58 +0200 |
commit | 894755776f0d100032eb4346ea4a1f07defb61cb (patch) | |
tree | 89754430a385e9412732f1ba9ac99c8511edd831 /lib/quotient_common.h | |
parent | 9f9577ccdebad84faf96766f8e5b07e2f2b605c5 (diff) | |
parent | bd74588539d8a5922e9f51eb691052c06c02a5ed (diff) | |
download | libquotient-894755776f0d100032eb4346ea4a1f07defb61cb.tar.gz libquotient-894755776f0d100032eb4346ea4a1f07defb61cb.zip |
Merge pull request #407 from quotient-im/kitsune-resource-resolver
Matrix URIs and resolving them
Diffstat (limited to 'lib/quotient_common.h')
-rw-r--r-- | lib/quotient_common.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/quotient_common.h b/lib/quotient_common.h index 44541b42..bb05af05 100644 --- a/lib/quotient_common.h +++ b/lib/quotient_common.h @@ -14,15 +14,15 @@ enum RunningPolicy { ForegroundRequest = 0x0, BackgroundRequest = 0x1 }; Q_ENUM_NS(RunningPolicy) -enum ResourceResolveResult : short { +enum UriResolveResult : short { StillResolving = -1, - Resolved = 0, - UnknownMatrixId, - MalformedMatrixId, - NoAccount, - EmptyMatrixId + UriResolved = 0, + CouldNotResolve, + IncorrectAction, + InvalidUri, + NoAccount }; -Q_ENUM_NS(ResourceResolveResult) +Q_ENUM_NS(UriResolveResult) } // namespace Quotient /// \deprecated Use namespace Quotient instead |