aboutsummaryrefslogtreecommitdiff
path: root/lib/quotient_common.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-07-22 21:04:58 +0200
committerGitHub <noreply@github.com>2020-07-22 21:04:58 +0200
commit894755776f0d100032eb4346ea4a1f07defb61cb (patch)
tree89754430a385e9412732f1ba9ac99c8511edd831 /lib/quotient_common.h
parent9f9577ccdebad84faf96766f8e5b07e2f2b605c5 (diff)
parentbd74588539d8a5922e9f51eb691052c06c02a5ed (diff)
downloadlibquotient-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.h14
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