chromium/third_party/grpc/src/src/core/lib/iomgr/socket_mutator.cc

//
//
// Copyright 2015 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//

#include <grpc/support/port_platform.h>

#include "src/core/lib/iomgr/socket_mutator.h"

#include <grpc/impl/grpc_types.h>
#include <grpc/support/log.h>
#include <grpc/support/sync.h>

#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/gpr/useful.h"
#include "src/core/lib/gprpp/crash.h"

void grpc_socket_mutator_init(grpc_socket_mutator* mutator,
                              const grpc_socket_mutator_vtable* vtable) {}

grpc_socket_mutator* grpc_socket_mutator_ref(grpc_socket_mutator* mutator) {}

bool grpc_socket_mutator_mutate_fd(grpc_socket_mutator* mutator, int fd,
                                   grpc_fd_usage usage) {}

int grpc_socket_mutator_compare(grpc_socket_mutator* a,
                                grpc_socket_mutator* b) {}

void grpc_socket_mutator_unref(grpc_socket_mutator* mutator) {}

static void* socket_mutator_arg_copy(void* p) {}

static void socket_mutator_arg_destroy(void* p) {}

static int socket_mutator_cmp(void* a, void* b) {}

static const grpc_arg_pointer_vtable socket_mutator_arg_vtable =;

grpc_arg grpc_socket_mutator_to_arg(grpc_socket_mutator* mutator) {}