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
94ab1b55
Commit
94ab1b55
authored
7 years ago
by
David Garcia Quintas
Browse files
Options
Downloads
Patches
Plain Diff
Make ServerBuilder accept (
dns:///
) URIs instead of just dns names
parent
746f21ad
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/grpc++/server_builder.h
+4
-3
4 additions, 3 deletions
include/grpc++/server_builder.h
src/cpp/server/server_builder.cc
+8
-1
8 additions, 1 deletion
src/cpp/server/server_builder.cc
with
12 additions
and
4 deletions
include/grpc++/server_builder.h
+
4
−
3
View file @
94ab1b55
...
@@ -142,14 +142,15 @@ class ServerBuilder {
...
@@ -142,14 +142,15 @@ class ServerBuilder {
///
///
/// It can be invoked multiple times.
/// It can be invoked multiple times.
///
///
/// \param addr The address to try to bind to the server (eg, localhost:1234,
/// \param addr_uri The address to try to bind to the server in URI form. If
/// 192.168.1.1:31416, [::1]:27182, etc.).
/// the scheme name is omitted, "dns:///" is assumed. Valid values include
/// dns:///localhost:1234, / 192.168.1.1:31416, dns:///[::1]:27182, etc.).
/// \params creds The credentials associated with the server.
/// \params creds The credentials associated with the server.
/// \param selected_port[out] Upon success, updated to contain the port
/// \param selected_port[out] Upon success, updated to contain the port
/// number. \a nullptr otherwise.
/// number. \a nullptr otherwise.
///
///
// TODO(dgq): the "port" part seems to be a misnomer.
// TODO(dgq): the "port" part seems to be a misnomer.
ServerBuilder
&
AddListeningPort
(
const
grpc
::
string
&
addr
,
ServerBuilder
&
AddListeningPort
(
const
grpc
::
string
&
addr
_uri
,
std
::
shared_ptr
<
ServerCredentials
>
creds
,
std
::
shared_ptr
<
ServerCredentials
>
creds
,
int
*
selected_port
=
nullptr
);
int
*
selected_port
=
nullptr
);
...
...
This diff is collapsed.
Click to expand it.
src/cpp/server/server_builder.cc
+
8
−
1
View file @
94ab1b55
...
@@ -172,8 +172,15 @@ ServerBuilder& ServerBuilder::SetResourceQuota(
...
@@ -172,8 +172,15 @@ ServerBuilder& ServerBuilder::SetResourceQuota(
}
}
ServerBuilder
&
ServerBuilder
::
AddListeningPort
(
ServerBuilder
&
ServerBuilder
::
AddListeningPort
(
const
grpc
::
string
&
addr
,
std
::
shared_ptr
<
ServerCredentials
>
creds
,
const
grpc
::
string
&
addr
_uri
,
std
::
shared_ptr
<
ServerCredentials
>
creds
,
int
*
selected_port
)
{
int
*
selected_port
)
{
const
grpc
::
string
uri_scheme
=
"dns:"
;
grpc
::
string
addr
=
addr_uri
;
if
(
addr_uri
.
compare
(
0
,
uri_scheme
.
size
(),
uri_scheme
)
==
0
)
{
size_t
pos
=
uri_scheme
.
size
();
while
(
addr_uri
[
pos
]
==
'/'
)
++
pos
;
// Skip slashes.
addr
=
addr_uri
.
substr
(
pos
);
}
Port
port
=
{
addr
,
creds
,
selected_port
};
Port
port
=
{
addr
,
creds
,
selected_port
};
ports_
.
push_back
(
port
);
ports_
.
push_back
(
port
);
return
*
this
;
return
*
this
;
...
...
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