mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-27 15:41:05 +08:00
Solution: allow brackets in tcp ipv6 address
This commit is contained in:
parent
d33fb6a2af
commit
15f9ee19cb
@ -717,11 +717,12 @@ int zmq::socket_base_t::connect (const char *addr_)
|
||||
// Following code is quick and dirty check to catch obvious errors,
|
||||
// without trying to be fully accurate.
|
||||
const char *check = address.c_str ();
|
||||
if (isalnum (*check) || isxdigit (*check)) {
|
||||
if (isalnum (*check) || isxdigit (*check) || *check == '[') {
|
||||
check++;
|
||||
while (isalnum (*check)
|
||||
|| isxdigit (*check)
|
||||
|| *check == '.' || *check == '-' || *check == ':'|| *check == ';')
|
||||
|| *check == '.' || *check == '-' || *check == ':'|| *check == ';'
|
||||
|| *check == ']')
|
||||
check++;
|
||||
}
|
||||
// Assume the worst, now look for success
|
||||
|
@ -40,7 +40,10 @@ int main (void)
|
||||
|
||||
int rc = zmq_connect (sock, "tcp://localhost:1234");
|
||||
assert (rc == 0);
|
||||
|
||||
|
||||
rc = zmq_connect (sock, "tcp://[::1]:1234");
|
||||
assert (rc == 0);
|
||||
|
||||
rc = zmq_connect (sock, "tcp://localhost:invalid");
|
||||
assert (rc == -1);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user