Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
4d6fbe17
Commit
4d6fbe17
authored
Dec 10, 2016
by
pavel.pimenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"%" -> '%'
parent
39947d55
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tcp_address.cpp
src/tcp_address.cpp
+1
-1
No files found.
src/tcp_address.cpp
View file @
4d6fbe17
...
...
@@ -607,7 +607,7 @@ int zmq::tcp_address_t::resolve (const char *name_, bool local_, bool ipv6_, boo
// Test the '%' to know if we have an interface name / zone_id in the address
// Reference: https://tools.ietf.org/html/rfc4007
std
::
size_t
pos
=
addr_str
.
rfind
(
"%"
);
std
::
size_t
pos
=
addr_str
.
rfind
(
'%'
);
uint32_t
zone_id
=
0
;
if
(
pos
!=
std
::
string
::
npos
)
{
std
::
string
if_str
=
addr_str
.
substr
(
pos
+
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment