Changeset b5cf742a in mainline for uspace/lib/c/generic/inet.c


Ignore:
Timestamp:
2013-06-28T16:22:42Z (12 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
edf0d27
Parents:
e52b4b5
Message:

cstyle (no change in functionality)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/inet.c

    re52b4b5 rb5cf742a  
    169169        inet_addr_unpack(IPC_GET_ARG2(*call), &dgram.dest);
    170170        dgram.tos = IPC_GET_ARG3(*call);
    171 
     171       
    172172        rc = async_data_write_accept(&dgram.data, false, 0, 0, 0, &dgram.size);
    173173        if (rc != EOK) {
     
    175175                return;
    176176        }
    177 
     177       
    178178        rc = inet_ev_ops->recv(&dgram);
    179179        async_answer_0(callid, rc);
     
    185185                ipc_call_t call;
    186186                ipc_callid_t callid = async_get_call(&call);
    187 
     187               
    188188                if (!IPC_GET_IMETHOD(call)) {
    189189                        /* TODO: Handle hangup */
    190190                        return;
    191191                }
    192 
     192               
    193193                switch (IPC_GET_IMETHOD(call)) {
    194194                case INET_EV_RECV:
Note: See TracChangeset for help on using the changeset viewer.