Changes in uspace/srv/net/udp/assoc.h [8d2dd7f2:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/assoc.h
r8d2dd7f2 rb7fd2a0 40 40 #include "udp_type.h" 41 41 42 extern int udp_assocs_init(void);42 extern errno_t udp_assocs_init(void); 43 43 extern udp_assoc_t *udp_assoc_new(inet_ep2_t *, udp_assoc_cb_t *, void *); 44 44 extern void udp_assoc_delete(udp_assoc_t *); 45 extern int udp_assoc_add(udp_assoc_t *);45 extern errno_t udp_assoc_add(udp_assoc_t *); 46 46 extern void udp_assoc_remove(udp_assoc_t *); 47 47 extern void udp_assoc_addref(udp_assoc_t *); 48 48 extern void udp_assoc_delref(udp_assoc_t *); 49 49 extern void udp_assoc_set_iplink(udp_assoc_t *, service_id_t); 50 extern int udp_assoc_send(udp_assoc_t *, inet_ep_t *, udp_msg_t *);51 extern int udp_assoc_recv(udp_assoc_t *, udp_msg_t **, inet_ep_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 *); 52 52 extern void udp_assoc_received(inet_ep2_t *, udp_msg_t *); 53 53 extern void udp_assoc_reset(udp_assoc_t *);
Note:
See TracChangeset
for help on using the changeset viewer.