On FreeBSD I see ECONNRESET being returned from check_connection_completion in ssl_connect. This happens before entering the SSL states, which return EPROTO on failure.
Signed-off-by: Ed Maste <[email protected]> --- tests/test-vconn.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/test-vconn.c b/tests/test-vconn.c index 5dd38f0..0b2b063 100644 --- a/tests/test-vconn.c +++ b/tests/test-vconn.c @@ -159,8 +159,15 @@ test_refuse_connection(int argc OVS_UNUSED, char *argv[]) ovs_fatal(0, "unexpected vconn_connect() return value %d (%s)", error, strerror(error)); } + } else if (!strcmp(type, "unix")) { + CHECK_ERRNO(error, EPIPE); + } else if (!strcmp(type, "ssl")) { + if (error != EPROTO && error != ECONNRESET) { + ovs_fatal(0, "unexpected vconn_connect() return value %d (%s)", + error, strerror(error)); + } } else { - CHECK_ERRNO(error, !strcmp(type, "unix") ? EPIPE : EPROTO); + ovs_fatal(0, "invalid connection type %s", type); } vconn_close(vconn); -- 1.7.11.5 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
