Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r25a179e  
    4242static uint8_t inet_protocol = 0;
    4343
    44 static errno_t inet_callback_create(void)
     44static int inet_callback_create(void)
    4545{
    4646        async_exch_t *exch = async_exchange_begin(inet_sess);
     
    5050       
    5151        port_id_t port;
    52         errno_t rc = async_create_callback_port(exch, INTERFACE_INET_CB, 0, 0,
     52        int rc = async_create_callback_port(exch, INTERFACE_INET_CB, 0, 0,
    5353            inet_cb_conn, NULL, &port);
    5454       
     
    5858                return rc;
    5959       
    60         errno_t retval;
     60        int retval;
    6161        async_wait_for(req, &retval);
    6262       
     
    6464}
    6565
    66 static errno_t inet_set_proto(uint8_t protocol)
    67 {
    68         async_exch_t *exch = async_exchange_begin(inet_sess);
    69         errno_t rc = async_req_1_0(exch, INET_SET_PROTO, protocol);
     66static int inet_set_proto(uint8_t protocol)
     67{
     68        async_exch_t *exch = async_exchange_begin(inet_sess);
     69        int rc = async_req_1_0(exch, INET_SET_PROTO, protocol);
    7070        async_exchange_end(exch);
    7171       
     
    7373}
    7474
    75 errno_t inet_init(uint8_t protocol, inet_ev_ops_t *ev_ops)
     75int inet_init(uint8_t protocol, inet_ev_ops_t *ev_ops)
    7676{
    7777        service_id_t inet_svc;
    78         errno_t rc;
     78        int rc;
    7979
    8080        assert(inet_sess == NULL);
     
    110110}
    111111
    112 errno_t inet_send(inet_dgram_t *dgram, uint8_t ttl, inet_df_t df)
     112int inet_send(inet_dgram_t *dgram, uint8_t ttl, inet_df_t df)
    113113{
    114114        async_exch_t *exch = async_exchange_begin(inet_sess);
     
    118118            ttl, df, &answer);
    119119       
    120         errno_t rc = async_data_write_start(exch, &dgram->src, sizeof(inet_addr_t));
     120        int rc = async_data_write_start(exch, &dgram->src, sizeof(inet_addr_t));
    121121        if (rc != EOK) {
    122122                async_exchange_end(exch);
     
    141141        }
    142142       
    143         errno_t retval;
     143        int retval;
    144144        async_wait_for(req, &retval);
    145145       
     
    147147}
    148148
    149 errno_t inet_get_srcaddr(inet_addr_t *remote, uint8_t tos, inet_addr_t *local)
     149int inet_get_srcaddr(inet_addr_t *remote, uint8_t tos, inet_addr_t *local)
    150150{
    151151        async_exch_t *exch = async_exchange_begin(inet_sess);
     
    154154        aid_t req = async_send_1(exch, INET_GET_SRCADDR, tos, &answer);
    155155       
    156         errno_t rc = async_data_write_start(exch, remote, sizeof(inet_addr_t));
     156        int rc = async_data_write_start(exch, remote, sizeof(inet_addr_t));
    157157        if (rc != EOK) {
    158158                async_exchange_end(exch);
     
    170170        }
    171171       
    172         errno_t retval;
     172        int retval;
    173173        async_wait_for(req, &retval);
    174174       
     
    197197        }
    198198       
    199         errno_t rc = async_data_write_finalize(callid, &dgram.src, size);
     199        int rc = async_data_write_finalize(callid, &dgram.src, size);
    200200        if (rc != EOK) {
    201201                async_answer_0(callid, rc);
Note: See TracChangeset for help on using the changeset viewer.