blob: d3ef5cb650ee0acd5db8ec8b24f46acb65ad353c [file] [log] [blame]
Adam Michalikb97e2d12016-06-02 12:12:55 -07001/*
2 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003 * Copyright 2016 gRPC authors.
Adam Michalikb97e2d12016-06-02 12:12:55 -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
Adam Michalikb97e2d12016-06-02 12:12:55 -07008 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009 * http://www.apache.org/licenses/LICENSE-2.0
Adam Michalikb97e2d12016-06-02 12:12:55 -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.
Adam Michalikb97e2d12016-06-02 12:12:55 -070016 *
17 */
18
19#include <grpc++/server_posix.h>
20
21#include <grpc/grpc_posix.h>
22
23namespace grpc {
24
25#ifdef GPR_SUPPORT_CHANNELS_FROM_FD
26
27void AddInsecureChannelFromFd(Server* server, int fd) {
Craig Tiller4ac2b8e2017-11-10 14:14:17 -080028 grpc_server_add_insecure_channel_from_fd(server->c_server(), nullptr, fd);
Martin Dyring-Andersen0de6cea2016-06-10 20:59:44 -040029}
Adam Michalikb97e2d12016-06-02 12:12:55 -070030
31#endif // GPR_SUPPORT_CHANNELS_FROM_FD
Adam Michalikb97e2d12016-06-02 12:12:55 -070032
33} // namespace grpc