diff options
author | neksard <neksard@yandex-team.ru> | 2022-02-10 16:45:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:23 +0300 |
commit | 8f7cf138264e0caa318144bf8a2c950e0b0a8593 (patch) | |
tree | 83bf5c8c8047c42d8475e6095df90ccdc3d1b57f /contrib/libs/grpc/src/cpp/common/secure_auth_context.h | |
parent | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (diff) | |
download | ydb-8f7cf138264e0caa318144bf8a2c950e0b0a8593.tar.gz |
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/grpc/src/cpp/common/secure_auth_context.h')
-rw-r--r-- | contrib/libs/grpc/src/cpp/common/secure_auth_context.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/libs/grpc/src/cpp/common/secure_auth_context.h b/contrib/libs/grpc/src/cpp/common/secure_auth_context.h index 51013efac7..40d1007dd6 100644 --- a/contrib/libs/grpc/src/cpp/common/secure_auth_context.h +++ b/contrib/libs/grpc/src/cpp/common/secure_auth_context.h @@ -21,17 +21,17 @@ #include <grpcpp/security/auth_context.h> -#include "src/core/lib/gprpp/ref_counted_ptr.h" -#include "src/core/lib/security/context/security_context.h" +#include "src/core/lib/gprpp/ref_counted_ptr.h" +#include "src/core/lib/security/context/security_context.h" namespace grpc { class SecureAuthContext final : public AuthContext { public: - explicit SecureAuthContext(grpc_auth_context* ctx) - : ctx_(ctx != nullptr ? ctx->Ref() : nullptr) {} + explicit SecureAuthContext(grpc_auth_context* ctx) + : ctx_(ctx != nullptr ? ctx->Ref() : nullptr) {} - ~SecureAuthContext() override = default; + ~SecureAuthContext() override = default; bool IsPeerAuthenticated() const override; @@ -52,7 +52,7 @@ class SecureAuthContext final : public AuthContext { virtual bool SetPeerIdentityPropertyName(const TString& name) override; private: - grpc_core::RefCountedPtr<grpc_auth_context> ctx_; + grpc_core::RefCountedPtr<grpc_auth_context> ctx_; }; } // namespace grpc |