Skip to content
Snippets Groups Projects
Commit ac8df657 authored by Mark D. Roth's avatar Mark D. Roth
Browse files

clang-format

parent 0b84add2
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ void grpc_handshaker_do_handshake(grpc_exec_ctx* exec_ctx, ...@@ -63,7 +63,7 @@ void grpc_handshaker_do_handshake(grpc_exec_ctx* exec_ctx,
grpc_endpoint* endpoint, grpc_endpoint* endpoint,
grpc_channel_args* args, grpc_channel_args* args,
gpr_timespec deadline, gpr_timespec deadline,
grpc_tcp_server_acceptor *acceptor, grpc_tcp_server_acceptor* acceptor,
grpc_handshaker_done_cb cb, void* user_data) { grpc_handshaker_done_cb cb, void* user_data) {
handshaker->vtable->do_handshake(exec_ctx, handshaker, endpoint, args, handshaker->vtable->do_handshake(exec_ctx, handshaker, endpoint, args,
deadline, acceptor, cb, user_data); deadline, acceptor, cb, user_data);
...@@ -80,7 +80,7 @@ struct grpc_handshaker_state { ...@@ -80,7 +80,7 @@ struct grpc_handshaker_state {
// The deadline for all handshakers. // The deadline for all handshakers.
gpr_timespec deadline; gpr_timespec deadline;
// The acceptor to call the handshakers with. // The acceptor to call the handshakers with.
grpc_tcp_server_acceptor *acceptor; grpc_tcp_server_acceptor* acceptor;
// The final callback and user_data to invoke after the last handshaker. // The final callback and user_data to invoke after the last handshaker.
grpc_handshaker_done_cb final_cb; grpc_handshaker_done_cb final_cb;
void* final_user_data; void* final_user_data;
...@@ -100,9 +100,7 @@ grpc_handshake_manager* grpc_handshake_manager_create() { ...@@ -100,9 +100,7 @@ grpc_handshake_manager* grpc_handshake_manager_create() {
return mgr; return mgr;
} }
static bool is_power_of_2(size_t n) { static bool is_power_of_2(size_t n) { return (n & (n - 1)) == 0; }
return (n & (n - 1)) == 0;
}
void grpc_handshake_manager_add(grpc_handshaker* handshaker, void grpc_handshake_manager_add(grpc_handshaker* handshaker,
grpc_handshake_manager* mgr) { grpc_handshake_manager* mgr) {
...@@ -115,8 +113,8 @@ void grpc_handshake_manager_add(grpc_handshaker* handshaker, ...@@ -115,8 +113,8 @@ void grpc_handshake_manager_add(grpc_handshaker* handshaker,
realloc_count = mgr->count * 2; realloc_count = mgr->count * 2;
} }
if (realloc_count > 0) { if (realloc_count > 0) {
mgr->handshakers = gpr_realloc(mgr->handshakers, mgr->handshakers =
realloc_count * sizeof(grpc_handshaker*)); gpr_realloc(mgr->handshakers, realloc_count * sizeof(grpc_handshaker*));
} }
mgr->handshakers[mgr->count++] = handshaker; mgr->handshakers[mgr->count++] = handshaker;
} }
...@@ -173,7 +171,7 @@ static void call_next_handshaker(grpc_exec_ctx* exec_ctx, ...@@ -173,7 +171,7 @@ static void call_next_handshaker(grpc_exec_ctx* exec_ctx,
void grpc_handshake_manager_do_handshake( void grpc_handshake_manager_do_handshake(
grpc_exec_ctx* exec_ctx, grpc_handshake_manager* mgr, grpc_exec_ctx* exec_ctx, grpc_handshake_manager* mgr,
grpc_endpoint* endpoint, const grpc_channel_args* args, grpc_endpoint* endpoint, const grpc_channel_args* args,
gpr_timespec deadline, grpc_tcp_server_acceptor *acceptor, gpr_timespec deadline, grpc_tcp_server_acceptor* acceptor,
grpc_handshaker_done_cb cb, void* user_data) { grpc_handshaker_done_cb cb, void* user_data) {
grpc_channel_args* args_copy = grpc_channel_args_copy(args); grpc_channel_args* args_copy = grpc_channel_args_copy(args);
if (mgr->count == 0) { if (mgr->count == 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment