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
9a009f2a
Commit
9a009f2a
authored
9 years ago
by
yang-g
Browse files
Options
Downloads
Patches
Plain Diff
make accessors from get_x() to x()
parent
ef4aac6d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/grpc++/client_context.h
+4
-4
4 additions, 4 deletions
include/grpc++/client_context.h
include/grpc++/server_context.h
+2
-2
2 additions, 2 deletions
include/grpc++/server_context.h
src/cpp/client/channel.cc
+1
-1
1 addition, 1 deletion
src/cpp/client/channel.cc
with
7 additions
and
7 deletions
include/grpc++/client_context.h
+
4
−
4
View file @
9a009f2a
...
@@ -110,7 +110,7 @@ class ClientContext {
...
@@ -110,7 +110,7 @@ class ClientContext {
creds_
=
creds
;
creds_
=
creds
;
}
}
grpc_compression_algorithm
get_
compression_algorithm
()
const
{
grpc_compression_algorithm
compression_algorithm
()
const
{
return
compression_algorithm_
;
return
compression_algorithm_
;
}
}
...
@@ -119,8 +119,8 @@ class ClientContext {
...
@@ -119,8 +119,8 @@ class ClientContext {
std
::
shared_ptr
<
const
AuthContext
>
auth_context
()
const
;
std
::
shared_ptr
<
const
AuthContext
>
auth_context
()
const
;
// Get and set census context
// Get and set census context
void
set_census_context
(
census_context
*
ccp
)
{
census_context_
=
ccp
;
}
void
set_census_context
(
struct
census_context
*
ccp
)
{
census_context_
=
ccp
;
}
census_context
*
get_
census_context
()
const
{
return
census_context_
;
}
struct
census_context
*
census_context
()
const
{
return
census_context_
;
}
void
TryCancel
();
void
TryCancel
();
...
@@ -170,7 +170,7 @@ class ClientContext {
...
@@ -170,7 +170,7 @@ class ClientContext {
grpc
::
string
authority_
;
grpc
::
string
authority_
;
std
::
shared_ptr
<
Credentials
>
creds_
;
std
::
shared_ptr
<
Credentials
>
creds_
;
mutable
std
::
shared_ptr
<
const
AuthContext
>
auth_context_
;
mutable
std
::
shared_ptr
<
const
AuthContext
>
auth_context_
;
census_context
*
census_context_
;
struct
census_context
*
census_context_
;
std
::
multimap
<
grpc
::
string
,
grpc
::
string
>
send_initial_metadata_
;
std
::
multimap
<
grpc
::
string
,
grpc
::
string
>
send_initial_metadata_
;
std
::
multimap
<
grpc
::
string
,
grpc
::
string
>
recv_initial_metadata_
;
std
::
multimap
<
grpc
::
string
,
grpc
::
string
>
recv_initial_metadata_
;
std
::
multimap
<
grpc
::
string
,
grpc
::
string
>
trailing_metadata_
;
std
::
multimap
<
grpc
::
string
,
grpc
::
string
>
trailing_metadata_
;
...
...
This diff is collapsed.
Click to expand it.
include/grpc++/server_context.h
+
2
−
2
View file @
9a009f2a
...
@@ -104,12 +104,12 @@ class ServerContext {
...
@@ -104,12 +104,12 @@ class ServerContext {
return
client_metadata_
;
return
client_metadata_
;
}
}
grpc_compression_level
get_
compression_level
()
const
{
grpc_compression_level
compression_level
()
const
{
return
compression_level_
;
return
compression_level_
;
}
}
void
set_compression_level
(
grpc_compression_level
level
);
void
set_compression_level
(
grpc_compression_level
level
);
grpc_compression_algorithm
get_
compression_algorithm
()
const
{
grpc_compression_algorithm
compression_algorithm
()
const
{
return
compression_algorithm_
;
return
compression_algorithm_
;
}
}
void
set_compression_algorithm
(
grpc_compression_algorithm
algorithm
);
void
set_compression_algorithm
(
grpc_compression_algorithm
algorithm
);
...
...
This diff is collapsed.
Click to expand it.
src/cpp/client/channel.cc
+
1
−
1
View file @
9a009f2a
...
@@ -69,7 +69,7 @@ Call Channel::CreateCall(const RpcMethod& method, ClientContext* context,
...
@@ -69,7 +69,7 @@ Call Channel::CreateCall(const RpcMethod& method, ClientContext* context,
?
target_
.
c_str
()
?
target_
.
c_str
()
:
context
->
authority
().
c_str
(),
:
context
->
authority
().
c_str
(),
context
->
raw_deadline
());
context
->
raw_deadline
());
grpc_census_call_set_context
(
c_call
,
context
->
get_
census_context
());
grpc_census_call_set_context
(
c_call
,
context
->
census_context
());
GRPC_TIMER_MARK
(
GRPC_PTAG_CPP_CALL_CREATED
,
c_call
);
GRPC_TIMER_MARK
(
GRPC_PTAG_CPP_CALL_CREATED
,
c_call
);
context
->
set_call
(
c_call
,
shared_from_this
());
context
->
set_call
(
c_call
,
shared_from_this
());
return
Call
(
c_call
,
this
,
cq
);
return
Call
(
c_call
,
this
,
cq
);
...
...
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