This source file includes following definitions.
- IsAuthenticatorMessage
- CreateEmptyAuthenticatorMessage
- FindAuthenticatorMessage
#include "remoting/protocol/authenticator.h"
#include "remoting/base/constants.h"
#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
namespace remoting {
namespace protocol {
namespace {
const buzz::StaticQName kAuthenticationQName = { kChromotingXmlNamespace,
"authentication" };
}
bool Authenticator::IsAuthenticatorMessage(const buzz::XmlElement* message) {
return message->Name() == kAuthenticationQName;
}
scoped_ptr<buzz::XmlElement> Authenticator::CreateEmptyAuthenticatorMessage() {
return scoped_ptr<buzz::XmlElement>(
new buzz::XmlElement(kAuthenticationQName));
}
const buzz::XmlElement* Authenticator::FindAuthenticatorMessage(
const buzz::XmlElement* message) {
return message->FirstNamed(kAuthenticationQName);
}
}
}