diff options
author | Lance Stout <lancestout@gmail.com> | 2011-06-28 11:06:44 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-06-28 11:06:44 -0700 |
commit | 3b1f3fddf093f9bad80522287b8425a713ea8c5e (patch) | |
tree | 2c233ed8afc27f5db16ec5b6c75ecdc2c4c8ade7 /sleekxmpp/stanza/stream/tls.py | |
parent | fa716457a5cc8abf207e1da903202398dfb26878 (diff) | |
download | slixmpp-3b1f3fddf093f9bad80522287b8425a713ea8c5e.tar.gz slixmpp-3b1f3fddf093f9bad80522287b8425a713ea8c5e.tar.bz2 slixmpp-3b1f3fddf093f9bad80522287b8425a713ea8c5e.tar.xz slixmpp-3b1f3fddf093f9bad80522287b8425a713ea8c5e.zip |
Reorganized stream level stanzas.
Diffstat (limited to 'sleekxmpp/stanza/stream/tls.py')
-rw-r--r-- | sleekxmpp/stanza/stream/tls.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sleekxmpp/stanza/stream/tls.py b/sleekxmpp/stanza/stream/tls.py new file mode 100644 index 00000000..d85f9b49 --- /dev/null +++ b/sleekxmpp/stanza/stream/tls.py @@ -0,0 +1,50 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.stanza import StreamFeatures +from sleekxmpp.xmlstream import StanzaBase, ElementBase +from sleekxmpp.xmlstream import register_stanza_plugin + + +class STARTTLS(ElementBase): + + """ + """ + + name = 'starttls' + namespace = 'urn:ietf:params:xml:ns:xmpp-tls' + interfaces = set(('required',)) + plugin_attrib = name + + def get_required(self): + """ + """ + return True + + +class Proceed(StanzaBase): + + """ + """ + + name = 'proceed' + namespace = 'urn:ietf:params:xml:ns:xmpp-tls' + interfaces = set() + + +class Failure(StanzaBase): + + """ + """ + + name = 'failure' + namespace = 'urn:ietf:params:xml:ns:xmpp-tls' + interfaces = set() + + +register_stanza_plugin(StreamFeatures, STARTTLS) |