blob: d8282b475bf3bfe0a066dc3dcf628b3696caf129 [file] [log] [blame]
Craig Tillerfaa84802015-03-01 21:56:38 -08001/*
2 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003 * Copyright 2015 gRPC authors.
Craig Tillerfaa84802015-03-01 21:56:38 -08004 *
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
Craig Tillerfaa84802015-03-01 21:56:38 -08008 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009 * http://www.apache.org/licenses/LICENSE-2.0
Craig Tillerfaa84802015-03-01 21:56:38 -080010 *
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.
Craig Tillerfaa84802015-03-01 21:56:38 -080016 *
17 */
18
Craig Tiller9a4dddd2016-03-25 17:08:13 -070019#ifndef GRPC_CORE_LIB_SURFACE_INIT_H
20#define GRPC_CORE_LIB_SURFACE_INIT_H
Craig Tillerfaa84802015-03-01 21:56:38 -080021
Craig Tiller178edfa2016-02-17 20:54:46 -080022void grpc_register_security_filters(void);
Craig Tillerfaa84802015-03-01 21:56:38 -080023void grpc_security_pre_init(void);
Mark D. Roth1f0f23c2017-01-06 13:07:19 -080024void grpc_security_init(void);
jiangtaoli2016144f5552018-03-23 11:28:48 -070025void grpc_security_shutdown(void);
Craig Tiller60fd3612015-03-05 16:24:22 -080026int grpc_is_initialized(void);
Craig Tillerfaa84802015-03-01 21:56:38 -080027
Yash Tibrewal12fc6d42017-10-09 16:43:34 -070028#endif /* GRPC_CORE_LIB_SURFACE_INIT_H */