summaryrefslogtreecommitdiffstats
path: root/library/cpp/grpc/server/grpc_request.h
diff options
context:
space:
mode:
authormolotkov-and <[email protected]>2022-11-18 12:50:29 +0300
committermolotkov-and <[email protected]>2022-11-18 12:50:29 +0300
commita45acb262bfb6f7d06d70f9f04a763d61e811966 (patch)
tree2e4eacaa4f1ecfba0bea894abf4888b7718712ad /library/cpp/grpc/server/grpc_request.h
parentd563b5b3a6578243440353c5cfafdb56cc05fff3 (diff)
Authorization of registration node
Diffstat (limited to 'library/cpp/grpc/server/grpc_request.h')
-rw-r--r--library/cpp/grpc/server/grpc_request.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/cpp/grpc/server/grpc_request.h b/library/cpp/grpc/server/grpc_request.h
index a3a5c291f07..c4b7e9c040e 100644
--- a/library/cpp/grpc/server/grpc_request.h
+++ b/library/cpp/grpc/server/grpc_request.h
@@ -170,6 +170,10 @@ public:
return TBaseAsyncContext<TService>::GetPeerMetaValues(key);
}
+ TVector<TStringBuf> FindClientCert() const override {
+ return TBaseAsyncContext<TService>::FindClientCert();
+ }
+
grpc_compression_level GetCompressionLevel() const override {
return TBaseAsyncContext<TService>::GetCompressionLevel();
}