Changeset 7a8c1c4e in mainline for uspace/srv/net/tl/tcp/ucall.c


Ignore:
Timestamp:
2011-12-14T17:11:31Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0edaf0f6
Parents:
bbf159a
Message:

Deallocate connection structures.

File:
1 edited

Legend:

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

    rbbf159a r7a8c1c4e  
    251251}
    252252
     253/** Delete connection user call.
     254 *
     255 * (Not in spec.) Inform TCP that the user is done with this connection
     256 * and will not make any further calls/references to it. TCP can deallocate
     257 * the connection from now on.
     258 */
     259void tcp_uc_delete(tcp_conn_t *conn)
     260{
     261        log_msg(LVL_DEBUG, "tcp_uc_delete()");
     262        tcp_conn_delete(conn);
     263}
    253264
    254265/*
Note: See TracChangeset for help on using the changeset viewer.