Changeset 3fafe5e0 in mainline for uspace/srv/net


Ignore:
Timestamp:
2018-04-27T14:15:03Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7148abf
Parents:
a2eb85d
git-author:
Jiri Svoboda <jiri@…> (2018-04-26 17:14:26)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-27 14:15:03)
Message:

Fix incorrectly indented double-slash comments.

Location:
uspace/srv/net
Files:
3 edited

Legend:

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

    ra2eb85d r3fafe5e0  
    14221422        if (tcp_conn_lb == tcp_lb_segment) {
    14231423                /* Loop back segment */
    1424 //              tcp_ncsim_bounce_seg(sp, seg);
     1424#if 0
     1425                tcp_ncsim_bounce_seg(sp, seg);
     1426#endif
    14251427
    14261428                /* Reverse the identification */
  • uspace/srv/net/tcp/service.c

    ra2eb85d r3fafe5e0  
    567567        }
    568568
    569 //      tcp_uc_close(cconn->conn);
     569#if 0
     570        tcp_uc_close(cconn->conn);
     571#endif
    570572        tcp_clistener_destroy(clst);
    571573        return EOK;
  • uspace/srv/net/udp/service.c

    ra2eb85d r3fafe5e0  
    8787        rqe->cassoc = cassoc;
    8888
    89 //      fibril_mutex_lock(&assoc->lock);
    9089        list_append(&rqe->link, &cassoc->client->crcv_queue);
    91 //      fibril_mutex_unlock(&assoc->lock);
    92 
    93 //      fibril_condvar_broadcast(&assoc->rcv_queue_cv);
    94 
    9590        return EOK;
    9691}
Note: See TracChangeset for help on using the changeset viewer.