aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/transport_impl.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 12:33:20 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 12:33:20 -0700
commita82950e68318a6aab6fe894fa39f7fa616c4647b (patch)
tree7d02bd1e9e1cbae1f14ad4ad1e06d3ae81a96dfe /src/core/transport/transport_impl.h
parent8af4c337181322cc4fb396199c90f574cfb4163f (diff)
clang-format all core files
Diffstat (limited to 'src/core/transport/transport_impl.h')
-rw-r--r--src/core/transport/transport_impl.h25
1 files changed, 14 insertions, 11 deletions
diff --git a/src/core/transport/transport_impl.h b/src/core/transport/transport_impl.h
index 54ebc24ff3..900c6340ff 100644
--- a/src/core/transport/transport_impl.h
+++ b/src/core/transport/transport_impl.h
@@ -36,34 +36,37 @@
#include "src/core/transport/transport.h"
-typedef struct grpc_transport_vtable
-{
+typedef struct grpc_transport_vtable {
/* Memory required for a single stream element - this is allocated by upper
layers and initialized by the transport */
- size_t sizeof_stream; /* = sizeof(transport stream) */
+ size_t sizeof_stream; /* = sizeof(transport stream) */
/* implementation of grpc_transport_init_stream */
- int (*init_stream) (grpc_exec_ctx * exec_ctx, grpc_transport * self, grpc_stream * stream, const void *server_data, grpc_transport_stream_op * initial_op);
+ int (*init_stream)(grpc_exec_ctx *exec_ctx, grpc_transport *self,
+ grpc_stream *stream, const void *server_data,
+ grpc_transport_stream_op *initial_op);
/* implementation of grpc_transport_perform_stream_op */
- void (*perform_stream_op) (grpc_exec_ctx * exec_ctx, grpc_transport * self, grpc_stream * stream, grpc_transport_stream_op * op);
+ void (*perform_stream_op)(grpc_exec_ctx *exec_ctx, grpc_transport *self,
+ grpc_stream *stream, grpc_transport_stream_op *op);
/* implementation of grpc_transport_perform_op */
- void (*perform_op) (grpc_exec_ctx * exec_ctx, grpc_transport * self, grpc_transport_op * op);
+ void (*perform_op)(grpc_exec_ctx *exec_ctx, grpc_transport *self,
+ grpc_transport_op *op);
/* implementation of grpc_transport_destroy_stream */
- void (*destroy_stream) (grpc_exec_ctx * exec_ctx, grpc_transport * self, grpc_stream * stream);
+ void (*destroy_stream)(grpc_exec_ctx *exec_ctx, grpc_transport *self,
+ grpc_stream *stream);
/* implementation of grpc_transport_destroy */
- void (*destroy) (grpc_exec_ctx * exec_ctx, grpc_transport * self);
+ void (*destroy)(grpc_exec_ctx *exec_ctx, grpc_transport *self);
/* implementation of grpc_transport_get_peer */
- char *(*get_peer) (grpc_exec_ctx * exec_ctx, grpc_transport * self);
+ char *(*get_peer)(grpc_exec_ctx *exec_ctx, grpc_transport *self);
} grpc_transport_vtable;
/* an instance of a grpc transport */
-struct grpc_transport
-{
+struct grpc_transport {
/* pointer to a vtable defining operations on this transport */
const grpc_transport_vtable *vtable;
};