Commit ae461dc2 authored by Luca Boccassi's avatar Luca Boccassi

Problem: cannot use wildcard port with source address

Solution: fix TCP endpoint parsing to allow
tcp://127.0.0.1:*;127.0.0.1:1000
parent 06666d8c
...@@ -853,6 +853,7 @@ int zmq::socket_base_t::connect (const char *addr_) ...@@ -853,6 +853,7 @@ int zmq::socket_base_t::connect (const char *addr_)
|| isxdigit (*check) || isxdigit (*check)
|| *check == '.' || *check == '-' || *check == ':' || *check == '%' || *check == '.' || *check == '-' || *check == ':' || *check == '%'
|| *check == ';' || *check == '[' || *check == ']' || *check == '_' || *check == ';' || *check == '[' || *check == ']' || *check == '_'
|| *check == '*'
) { ) {
check++; check++;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment