Just like previous commit, we don't need to pass through the connection
layer anymore to enable polling during a connect(), we know the FD, so
let's simply call fd_want_send().
return SF_ERR_RESOURCE;
}
- conn_xprt_want_send(conn); /* for connect status, proxy protocol or SSL */
+ fd_want_send(fd); /* for connect status, proxy protocol or SSL */
return SF_ERR_NONE; /* connection is OK */
}
return SF_ERR_RESOURCE;
}
- conn_xprt_want_send(conn); /* for connect status, proxy protocol or SSL */
+ fd_want_send(fd); /* for connect status, proxy protocol or SSL */
return SF_ERR_NONE; /* connection is OK */
}
return SF_ERR_RESOURCE;
}
- conn_xprt_want_send(conn); /* for connect status, proxy protocol or SSL */
+ fd_want_send(fd); /* for connect status, proxy protocol or SSL */
return SF_ERR_NONE; /* connection is OK */
}