diff options
Diffstat (limited to 'Swiften/Parser/AuthRequestParser.cpp')
| m--------- | Swiften | 0 | ||||
| -rw-r--r-- | Swiften/Parser/AuthRequestParser.cpp | 27 | 
2 files changed, 0 insertions, 27 deletions
diff --git a/Swiften b/Swiften new file mode 160000 +Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c diff --git a/Swiften/Parser/AuthRequestParser.cpp b/Swiften/Parser/AuthRequestParser.cpp deleted file mode 100644 index 5338b88..0000000 --- a/Swiften/Parser/AuthRequestParser.cpp +++ /dev/null @@ -1,27 +0,0 @@ -#include "Swiften/Parser/AuthRequestParser.h" -#include "Swiften/StringCodecs/Base64.h" - -namespace Swift { - -AuthRequestParser::AuthRequestParser() : GenericElementParser<AuthRequest>(), depth_(0) { -} - -void AuthRequestParser::handleStartElement(const String&, const String&, const AttributeMap& attribute) { -	if (depth_ == 0) { -		getElementGeneric()->setMechanism(attribute.getAttribute("mechanism")); -	} -	++depth_; -} - -void AuthRequestParser::handleEndElement(const String&, const String&) { -	--depth_; -	if (depth_ == 0) { -		getElementGeneric()->setMessage(Base64::decode(text_)); -	} -} - -void AuthRequestParser::handleCharacterData(const String& text) { -	text_ += text; -} - -}  | 
 Swift