diff options
author | Douglas Young <rcxdude@gmail.com> | 2012-05-05 19:03:31 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-05-06 02:22:30 +0200 |
commit | c618421d6f74c0d8838c1d322304eed8321af27d (patch) | |
tree | c882fe8e733cc61aa98654154402d70223d0bd4e /doc | |
parent | 4e6a1e5508151d308a53124e4733ae1c1f7b3fb2 (diff) |
Return error if an invalid connection string is used
This patch reintroduces the behaviour that if a tcp:// or ipc:// connection
string which is invalid is passed to xs_connect, then an error is reported,
instead of asserting at connection time
Diffstat (limited to 'doc')
-rw-r--r-- | doc/xs_bind.txt | 2 | ||||
-rw-r--r-- | doc/xs_connect.txt | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/xs_bind.txt b/doc/xs_bind.txt index 3472f04..c6f472c 100644 --- a/doc/xs_bind.txt +++ b/doc/xs_bind.txt @@ -46,6 +46,8 @@ ERRORS ------ *EINVAL*:: The endpoint supplied is invalid. +*ENAMETOOLONG*:: +The supplied name was too long. *EPROTONOSUPPORT*:: The requested 'transport' protocol is not supported. *ENOCOMPATPROTO*:: diff --git a/doc/xs_connect.txt b/doc/xs_connect.txt index 02597da..00625d3 100644 --- a/doc/xs_connect.txt +++ b/doc/xs_connect.txt @@ -50,6 +50,8 @@ ERRORS ------ *EINVAL*:: The endpoint supplied is invalid. +*ENAMETOOLONG*:: +The supplied name was too long. *EPROTONOSUPPORT*:: The requested 'transport' protocol is not supported. *ENOCOMPATPROTO*:: |