Changeset beb83c1 in mainline for uspace/srv/net


Ignore:
Timestamp:
2018-10-31T06:03:38Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
208db5a
Parents:
167616c
git-author:
Jakub Jermar <jakub@…> (2018-10-31 00:41:46)
git-committer:
Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
Message:

Add async_accept_0() for accepting connections

Location:
uspace/srv/net
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/dhcp/main.c

    r167616c rbeb83c1  
    128128
    129129        /* Accept the connection */
    130         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     130        async_accept_0(icall);
    131131
    132132        while (true) {
  • uspace/srv/net/dnsrsrv/dnsrsrv.c

    r167616c rbeb83c1  
    213213
    214214        /* Accept the connection */
    215         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     215        async_accept_0(icall);
    216216
    217217        while (true) {
  • uspace/srv/net/inetsrv/inetcfg.c

    r167616c rbeb83c1  
    742742
    743743        /* Accept the connection */
    744         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     744        async_accept_0(icall);
    745745
    746746        while (true) {
  • uspace/srv/net/inetsrv/inetping.c

    r167616c rbeb83c1  
    284284
    285285        /* Accept the connection */
    286         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     286        async_accept_0(icall);
    287287
    288288        inetping_client_t client;
  • uspace/srv/net/inetsrv/inetsrv.c

    r167616c rbeb83c1  
    390390
    391391        /* Accept the connection */
    392         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     392        async_accept_0(icall);
    393393
    394394        inet_client_init(&client);
  • uspace/srv/net/tcp/service.c

    r167616c rbeb83c1  
    11691169
    11701170        /* Accept the connection */
    1171         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     1171        async_accept_0(icall);
    11721172
    11731173        log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_client_conn() - client=%p",
  • uspace/srv/net/udp/service.c

    r167616c rbeb83c1  
    667667
    668668        /* Accept the connection */
    669         async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
     669        async_accept_0(icall);
    670670
    671671        log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_client_conn()");
Note: See TracChangeset for help on using the changeset viewer.