Ignore:
File:
1 edited

Legend:

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

    r8499160 r797dc79e  
    108108                assert(nconn->cstate == st_closed);
    109109                tcp_conn_unlock(nconn);
     110                tcp_conn_delete(nconn);
    110111                return TCP_ERESET;
    111112        }
     
    280281{
    281282        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_uc_abort()");
     283
     284        tcp_conn_lock(conn);
     285        tcp_conn_reset(conn);
     286        tcp_conn_unlock(conn);
    282287}
    283288
Note: See TracChangeset for help on using the changeset viewer.