summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
8167ca3)
The optimization that reduced how often the poll callback is called when
the application did not write anything to the channel in the callback also
inadvertently stopped it from being called right when the channel is
fully established.
debug(c, "accepted %p %p\n", c, recv, priv);
c->recv = recv;
c->priv = priv;
debug(c, "accepted %p %p\n", c, recv, priv);
c->recv = recv;
c->priv = priv;
set_state(c, ESTABLISHED);
}
set_state(c, ESTABLISHED);
}
c->snd.last++;
set_state(c, FIN_WAIT_1);
} else {
c->snd.last++;
set_state(c, FIN_WAIT_1);
} else {
set_state(c, ESTABLISHED);
}
set_state(c, ESTABLISHED);
}