|
@@ -259,7 +259,7 @@ static bool_t server_ev(faux_eloop_t *eloop, faux_eloop_type_e type,
|
|
|
|
|
|
if (info->revents & POLLOUT) {
|
|
|
faux_eloop_exclude_fd_event(eloop, info->fd, POLLOUT);
|
|
|
- if (faux_async_out_easy(ktp->async) < 0) {
|
|
|
+ if (faux_async_out(ktp->async) < 0) {
|
|
|
|
|
|
faux_eloop_del_fd(eloop, info->fd);
|
|
|
syslog(LOG_ERR, "Problem with async output");
|
|
@@ -269,7 +269,7 @@ static bool_t server_ev(faux_eloop_t *eloop, faux_eloop_type_e type,
|
|
|
|
|
|
|
|
|
if (info->revents & POLLIN) {
|
|
|
- if (faux_async_in_easy(ktp->async) < 0) {
|
|
|
+ if (faux_async_in(ktp->async) < 0) {
|
|
|
|
|
|
faux_eloop_del_fd(eloop, info->fd);
|
|
|
syslog(LOG_ERR, "Problem with async input");
|