search for: connect_errno

Displaying 2 results from an estimated 2 matches for "connect_errno".

2019 Sep 12
2
[PATCH libnbd 1/2] nbd_connect_tcp: Try to return errno from underlying connect(2) call.
...iles changed, 11 insertions(+), 2 deletions(-) diff --git a/generator/states-connect.c b/generator/states-connect.c index 9e2e1d4..e9b3582 100644 --- a/generator/states-connect.c +++ b/generator/states-connect.c @@ -128,6 +128,8 @@ disable_nagle (int sock) h->result = NULL; } + h->connect_errno = 0; + memset (&h->hints, 0, sizeof h->hints); h->hints.ai_family = AF_UNSPEC; h->hints.ai_socktype = SOCK_STREAM; @@ -160,7 +162,8 @@ disable_nagle (int sock) * Save errno from most recent connect(2) call. XXX */ SET_NEXT_STATE (%^START); - set_error (0...
2006 Jan 06
1
Repost: Help - compilation of winbind_nss_solaris.c/3.0.21a/Solaris 7 and older fails
...o] Error 1 ------------- SOLARIS 2.5.1 ------------- On Solaris 2.5.1 problem comes from nsswitch/wb_common.c where socklen_t type is not defined artexp$ diff /smb/tmp/samba-3.0.20b/source/nsswitch/wb_common.c /smb/tmp/samba-3.0.21a/source/nsswitch/wb_common.c 237c237,238 < int connect_errno = 0, errnosize; --- > int connect_errno = 0; > socklen_t errnosize; 545a547,551 > > if ((request->extra_len != 0) && > (write_sock(request->extra_data, request->extra_len, request->flags & WBFLAG_RECURSE) == -1...