Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
ac8df657
Commit
ac8df657
authored
8 years ago
by
Mark D. Roth
Browse files
Options
Downloads
Patches
Plain Diff
clang-format
parent
0b84add2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/lib/channel/handshaker.c
+6
-8
6 additions, 8 deletions
src/core/lib/channel/handshaker.c
with
6 additions
and
8 deletions
src/core/lib/channel/handshaker.c
+
6
−
8
View file @
ac8df657
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment