diff options
Diffstat (limited to 'remoting/protocol/negotiating_authenticator_base.cc')
-rw-r--r-- | remoting/protocol/negotiating_authenticator_base.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/remoting/protocol/negotiating_authenticator_base.cc b/remoting/protocol/negotiating_authenticator_base.cc index 30bd8ba..5c61d30 100644 --- a/remoting/protocol/negotiating_authenticator_base.cc +++ b/remoting/protocol/negotiating_authenticator_base.cc @@ -40,6 +40,13 @@ Authenticator::State NegotiatingAuthenticatorBase::state() const { return state_; } +bool NegotiatingAuthenticatorBase::started() const { + if (!current_authenticator_) { + return false; + } + return current_authenticator_->started(); +} + Authenticator::RejectionReason NegotiatingAuthenticatorBase::rejection_reason() const { return rejection_reason_; |