summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0020/stanza.py
blob: 5546e1cda88497d59679ed8c754ed513a9568d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# Slixmpp: The Slick XMPP Library
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
from slixmpp.xmlstream import ElementBase


class FeatureNegotiation(ElementBase):

    name = 'feature'
    namespace = 'http://jabber.org/protocol/feature-neg'
    plugin_attrib = 'feature_neg'
    interfaces = set()