Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/udp/assoc.h

    rb7fd2a0 r8d2dd7f2  
    4040#include "udp_type.h"
    4141
    42 extern errno_t udp_assocs_init(void);
     42extern int udp_assocs_init(void);
    4343extern udp_assoc_t *udp_assoc_new(inet_ep2_t *, udp_assoc_cb_t *, void *);
    4444extern void udp_assoc_delete(udp_assoc_t *);
    45 extern errno_t udp_assoc_add(udp_assoc_t *);
     45extern int udp_assoc_add(udp_assoc_t *);
    4646extern void udp_assoc_remove(udp_assoc_t *);
    4747extern void udp_assoc_addref(udp_assoc_t *);
    4848extern void udp_assoc_delref(udp_assoc_t *);
    4949extern void udp_assoc_set_iplink(udp_assoc_t *, service_id_t);
    50 extern errno_t udp_assoc_send(udp_assoc_t *, inet_ep_t *, udp_msg_t *);
    51 extern errno_t udp_assoc_recv(udp_assoc_t *, udp_msg_t **, inet_ep_t *);
     50extern int udp_assoc_send(udp_assoc_t *, inet_ep_t *, udp_msg_t *);
     51extern int udp_assoc_recv(udp_assoc_t *, udp_msg_t **, inet_ep_t *);
    5252extern void udp_assoc_received(inet_ep2_t *, udp_msg_t *);
    5353extern void udp_assoc_reset(udp_assoc_t *);
Note: See TracChangeset for help on using the changeset viewer.