summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-13 15:38:42 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-13 15:38:42 +0200
commit48808851717895cb8adbdbbd3014f43c26921b36 (patch)
treee25e8939a57cba3fe27e27148848b5daafb6111f
parent4cc35a30fb47eae9e44825b9f4809bf263b880d0 (diff)
constants.py: add Message_Sending_Flags and Delivery_Reporting_Support_Flags
-rw-r--r--tests/twisted/constants.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/twisted/constants.py b/tests/twisted/constants.py
index 59c979136..2464387f9 100644
--- a/tests/twisted/constants.py
+++ b/tests/twisted/constants.py
@@ -396,3 +396,14 @@ TLS_CERT_STATE_REJECTED = 2
TLS_REJECT_REASON_UNKNOWN = 0
TLS_REJECT_REASON_UNTRUSTED = 1
+
+# Channel.Interface.Messages
+
+MSG_SENDING_FLAGS_REPORT_DELIVERY = 1
+MSG_SENDING_FLAGS_REPORT_READ = 2
+MSG_SENDING_FLAGS_REPORT_DELETED = 4
+
+DELIVERY_REPORTING_SUPPORT_FLAGS_RECEIVE_FAILURES = 1
+DELIVERY_REPORTING_SUPPORT_FLAGS_RECEIVE_SUCCESSES = 2
+DELIVERY_REPORTING_SUPPORT_FLAGS_RECEIVE_READ = 4
+DELIVERY_REPORTING_SUPPORT_FLAGS_RECEIVE_DELETED = 8