https://bugs.openldap.org/show_bug.cgi?id=8738
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |INVALID
Status|UNCONFIRMED |RESOLVED
--- Comment #4 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Hi Dieter,
Your change removes startTLS from being critical, which is a critical part of
what's being tested. I.e., it allows the startTLS operation to fail.
If you're still seeing this issue, it would imply that your system does not
have a validly configured "localhost".
Regards,
Quanah
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8159
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|IN_PROGRESS |RESOLVED
Resolution|--- |TEST
Keywords|OL_2_5_REQ |
--- Comment #3 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Commits:
• e749750a
by Quanah Gibson-Mount at 2020-09-01T19:40:36+00:00
ITS#8159 - Add missing "hard" parameter to size.prtotal
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=6225
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.5.0 |---
Status|RESOLVED |VERIFIED
Keywords|OL_2_5_REQ |
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=6225
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |INVALID
Status|UNCONFIRMED |RESOLVED
--- Comment #8 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Superceded by Issue#6567
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8159
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |IN_PROGRESS
Ever confirmed|0 |1
--- Comment #2 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
https://git.openldap.org/openldap/openldap/-/merge_requests/131
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8333
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|OL_2_5_REQ |
Target Milestone|2.5.0 |2.6.0
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=6151
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|OL_2_5_REQ |
Status|IN_PROGRESS |CONFIRMED
Target Milestone|2.5.0 |2.6.0
--- Comment #21 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Punting to 2.6
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8175
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|OL_2_5_REQ |
Status|UNCONFIRMED |RESOLVED
Resolution|--- |TEST
--- Comment #3 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Commits:
• 04124c1f
by Quanah Gibson-Mount at 2020-09-01T18:04:06+00:00
ITS#8175 - Fix missing descriptions for olcDisallows for
proxy_authz_non_critical and dontusecopy_non_critical
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8047
--- Comment #6 from Allen Zhang <allen.zhang(a)audiocodes.com> ---
HI
what we see is, we get stuck at connect() below 120 seconds.
if opt_tv is set, the connect will work in non-block mode and return
immediately.
later in ldap_int_poll(), the network timeout will take effect.
what do you think?
static int
ldap_pvt_connect(LDAP *ld, ber_socket_t s,
struct sockaddr *sin, ber_socklen_t addrlen,
int async)
{
int rc, err;
struct timeval tv, *opt_tv = NULL;
#ifdef LDAP_CONNECTIONLESS
/* We could do a connect() but that would interfere with
* attempts to poll a broadcast address
*/
if (LDAP_IS_UDP(ld)) {
if (ld->ld_options.ldo_peer)
ldap_memfree(ld->ld_options.ldo_peer);
ld->ld_options.ldo_peer=ldap_memcalloc(1,
sizeof(struct sockaddr_storage));
AC_MEMCPY(ld->ld_options.ldo_peer,sin,addrlen);
return ( 0 );
}
#endif
if ( ld->ld_options.ldo_tm_net.tv_sec >= 0 ) {
tv = ld->ld_options.ldo_tm_net;
opt_tv = &tv;
}
osip_debug(ld, "ldap_pvt_connect: fd: %d tm: %ld async: %d\n",
s, opt_tv ? tv.tv_sec : -1L,
async);
if ( opt_tv && ldap_pvt_ndelay_on(ld, s) == -1 )
return ( -1 );
do{
osip_debug(ld, "attempting to connect: \n", 0,
0, 0);
if ( connect(s, sin, addrlen) !=
AC_SOCKET_ERROR ) {
osip_debug(ld, "connect
success\n", 0, 0, 0);
if ( !async && opt_tv &&
ldap_pvt_ndelay_off(ld, s) == -1 )
return ( -1 );
return ( 0 );
}
err = sock_errno();
osip_debug(ld, "connect errno: %d\n", err, 0,
0);
} while(err == EINTR &&
LDAP_BOOL_GET( &ld->ld_options,
LDAP_BOOL_RESTART ));
if ( err != EINPROGRESS && err != EWOULDBLOCK ) {
return ( -1 );
}
if ( async ) {
/* caller will call ldap_int_poll() as
appropriate? */
return ( -2 );
}
rc = ldap_int_poll( ld, s, opt_tv, 1 );
osip_debug(ld, "ldap_pvt_connect: %d\n", rc, 0, 0);
return rc;
}
--
You are receiving this mail because:
You are on the CC list for the issue.