httpsCreate(const Comm::ConnectionPointer &conn, const Security::ContextPointer &ctx)
{
if (Security::CreateServerSession(ctx, conn, "client https start")) {
- debugs(33, 5, "will negotate TLS on " << conn);
+ debugs(33, 5, "will negotiate TLS on " << conn);
return true;
}
Security::PeerConnector::noteWantRead()
{
const int fd = serverConnection()->fd;
- debugs(83, 5, "FD " << fd);
+ debugs(83, 5, serverConnection());
#if USE_OPENSSL
Security::SessionPointer session(fd_table[fd].ssl);
BIO *b = SSL_get_rbio(session.get());
Security::PeerConnector::noteWantWrite()
{
const int fd = serverConnection()->fd;
- debugs(83, 5, "FD " << fd);
+ debugs(83, 5, serverConnection());
Comm::SetSelect(fd, COMM_SELECT_WRITE, &NegotiateSsl, this, 0);
return;
}