forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthenticator.cc
36 lines (28 loc) · 1.07 KB
/
authenticator.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/protocol/authenticator.h"
#include "remoting/base/constants.h"
#include "third_party/libjingle_xmpp/xmllite/xmlelement.h"
namespace remoting {
namespace protocol {
namespace {
const jingle_xmpp::StaticQName kAuthenticationQName = { kChromotingXmlNamespace,
"authentication" };
} // namespace
// static
bool Authenticator::IsAuthenticatorMessage(const jingle_xmpp::XmlElement* message) {
return message->Name() == kAuthenticationQName;
}
// static
std::unique_ptr<jingle_xmpp::XmlElement>
Authenticator::CreateEmptyAuthenticatorMessage() {
return std::make_unique<jingle_xmpp::XmlElement>(kAuthenticationQName);
}
// static
const jingle_xmpp::XmlElement* Authenticator::FindAuthenticatorMessage(
const jingle_xmpp::XmlElement* message) {
return message->FirstNamed(kAuthenticationQName);
}
} // namespace protocol
} // namespace remoting