/* If it’s a reliable agent, see if there’s any pending data in the pseudo-TCP
* buffer. */
- if (agent->reliable && component->tcp != NULL &&
+ if (component->tcp != NULL &&
pseudo_tcp_socket_get_available_bytes (component->tcp) > 0) {
retval = TRUE;
goto done;
/* If it’s a reliable agent, see if there’s any space in the pseudo-TCP output
* buffer. */
- if (agent->reliable && component->tcp != NULL &&
- pseudo_tcp_socket_can_send (component->tcp)) {
+ if (component->tcp != NULL && pseudo_tcp_socket_can_send (component->tcp)) {
retval = TRUE;
goto done;
}