blob: 4e5cbd037238734cbe639608cad15df12e262f77 [file] [log] [blame]
yang-g3abe60b2015-07-06 14:00:36 -07001/*
2 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003 * Copyright 2015 gRPC authors.
yang-g3abe60b2015-07-06 14:00:36 -07004 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
yang-g3abe60b2015-07-06 14:00:36 -07008 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009 * http://www.apache.org/licenses/LICENSE-2.0
yang-g3abe60b2015-07-06 14:00:36 -070010 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
yang-g3abe60b2015-07-06 14:00:36 -070016 *
17 */
18#include <memory>
19
Craig Tillerf40df232016-03-25 13:38:14 -070020#include <grpc/grpc.h>
Muxi Yan0e00c432018-01-26 15:39:32 -080021#include <grpcpp/security/auth_context.h>
yang-g3abe60b2015-07-06 14:00:36 -070022
23namespace grpc {
24
yang-g85c04f92015-07-07 17:47:31 -070025std::shared_ptr<const AuthContext> CreateAuthContext(grpc_call* call) {
yang-g3abe60b2015-07-06 14:00:36 -070026 (void)call;
yang-g85c04f92015-07-07 17:47:31 -070027 return std::shared_ptr<const AuthContext>();
yang-g3abe60b2015-07-06 14:00:36 -070028}
29
30} // namespace grpc