Changeset 8fcf74f in mainline for uspace/srv/net/tl/tcp/sock.c


Ignore:
Timestamp:
2011-11-30T20:15:22Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
92e717c
Parents:
a4ee3ab2
Message:

Fix recv[from]() for active connections, connect() was missing notif.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/sock.c

    ra4ee3ab2 r8fcf74f  
    157157        log_msg(LVL_DEBUG, " - success");
    158158        async_answer_0(callid, EOK);
    159 
    160         /* Push one fragment notification to client's queue */
    161         tcp_sock_notify_data(sock_core);
    162159}
    163160
     
    264261
    265262        async_answer_0(callid, rc);
     263
     264        /* Push one fragment notification to client's queue */
     265        tcp_sock_notify_data(sock_core);
     266        log_msg(LVL_DEBUG, "tcp_sock_listen(): notify conn\n");
    266267}
    267268
     
    360361        tcp_sock_notify_data(asock_core);
    361362        log_msg(LVL_DEBUG, "tcp_sock_listen(): notify aconn\n");
    362 
    363363}
    364364
Note: See TracChangeset for help on using the changeset viewer.