aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/server_credentials.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpc++/server_credentials.h')
-rw-r--r--include/grpc++/server_credentials.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/grpc++/server_credentials.h b/include/grpc++/server_credentials.h
index 486c35c56b..e006f3a180 100644
--- a/include/grpc++/server_credentials.h
+++ b/include/grpc++/server_credentials.h
@@ -50,16 +50,16 @@ class ServerCredentials {
public:
virtual ~ServerCredentials();
+ // This method is not thread-safe and has to be called before the server is
+ // started. The last call to this function wins.
+ virtual void SetAuthMetadataProcessor(
+ const std::shared_ptr<AuthMetadataProcessor>& processor) = 0;
+
private:
friend class ::grpc::Server;
virtual int AddPortToServer(const grpc::string& addr,
grpc_server* server) = 0;
-
- // This method is not thread-safe and has to be called before the server is
- // started. The last call to this function wins.
- virtual void SetAuthMetadataProcessor(
- const std::shared_ptr<AuthMetadataProcessor>& processor) = 0;
};
// Options to create ServerCredentials with SSL