Ignore:
File:
1 edited

Legend:

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

    r25a179e rb7fd2a0  
    4646{
    4747        size_t mtu;
    48         int rc = srv->ops->get_mtu(srv, &mtu);
     48        errno_t rc = srv->ops->get_mtu(srv, &mtu);
    4949        async_answer_1(callid, rc, mtu);
    5050}
     
    5454{
    5555        addr48_t mac;
    56         int rc = srv->ops->get_mac48(srv, &mac);
     56        errno_t rc = srv->ops->get_mac48(srv, &mac);
    5757        if (rc != EOK) {
    5858                async_answer_0(iid, rc);
     
    8484    ipc_call_t *icall)
    8585{
    86         int rc;
     86        errno_t rc;
    8787        size_t size;
    8888        addr48_t mac;
     
    125125       
    126126        inet_addr_t addr;
    127         int rc = async_data_write_finalize(callid, &addr, size);
     127        errno_t rc = async_data_write_finalize(callid, &addr, size);
    128128        if (rc != EOK) {
    129129                async_answer_0(callid, rc);
     
    153153       
    154154        inet_addr_t addr;
    155         int rc = async_data_write_finalize(callid, &addr, size);
     155        errno_t rc = async_data_write_finalize(callid, &addr, size);
    156156        if (rc != EOK) {
    157157                async_answer_0(callid, rc);
     
    171171        sdu.dest = IPC_GET_ARG2(*icall);
    172172       
    173         int rc = async_data_write_accept(&sdu.data, false, 0, 0, 0,
     173        errno_t rc = async_data_write_accept(&sdu.data, false, 0, 0, 0,
    174174            &sdu.size);
    175175        if (rc != EOK) {
     
    202202        }
    203203       
    204         int rc = async_data_write_finalize(callid, &sdu.dest, size);
     204        errno_t rc = async_data_write_finalize(callid, &sdu.dest, size);
    205205        if (rc != EOK) {
    206206                async_answer_0(callid, rc);
     
    229229}
    230230
    231 int iplink_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     231errno_t iplink_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg)
    232232{
    233233        iplink_srv_t *srv = (iplink_srv_t *) arg;
    234         int rc;
     234        errno_t rc;
    235235       
    236236        fibril_mutex_lock(&srv->lock);
     
    302302
    303303/* XXX Version should be part of @a sdu */
    304 int iplink_ev_recv(iplink_srv_t *srv, iplink_recv_sdu_t *sdu, ip_ver_t ver)
     304errno_t iplink_ev_recv(iplink_srv_t *srv, iplink_recv_sdu_t *sdu, ip_ver_t ver)
    305305{
    306306        if (srv->client_sess == NULL)
     
    313313            &answer);
    314314       
    315         int rc = async_data_write_start(exch, sdu->data, sdu->size);
     315        errno_t rc = async_data_write_start(exch, sdu->data, sdu->size);
    316316        async_exchange_end(exch);
    317317       
     
    321321        }
    322322       
    323         int retval;
     323        errno_t retval;
    324324        async_wait_for(req, &retval);
    325325        if (retval != EOK)
     
    329329}
    330330
    331 int iplink_ev_change_addr(iplink_srv_t *srv, addr48_t *addr)
     331errno_t iplink_ev_change_addr(iplink_srv_t *srv, addr48_t *addr)
    332332{
    333333        if (srv->client_sess == NULL)
     
    339339        aid_t req = async_send_0(exch, IPLINK_EV_CHANGE_ADDR, &answer);
    340340       
    341         int rc = async_data_write_start(exch, addr, sizeof(addr48_t));
     341        errno_t rc = async_data_write_start(exch, addr, sizeof(addr48_t));
    342342        async_exchange_end(exch);
    343343       
     
    347347        }
    348348       
    349         int retval;
     349        errno_t retval;
    350350        async_wait_for(req, &retval);
    351351        if (retval != EOK)
Note: See TracChangeset for help on using the changeset viewer.