Changes in uspace/lib/c/include/inet/udp.h [b7fd2a0:58e8646] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/inet/udp.h
rb7fd2a0 r58e8646 91 91 } udp_t; 92 92 93 extern errno_t udp_create(udp_t **);93 extern int udp_create(udp_t **); 94 94 extern void udp_destroy(udp_t *); 95 extern errno_t udp_assoc_create(udp_t *, inet_ep2_t *, udp_cb_t *, void *,95 extern int udp_assoc_create(udp_t *, inet_ep2_t *, udp_cb_t *, void *, 96 96 udp_assoc_t **); 97 extern errno_t udp_assoc_set_nolocal(udp_assoc_t *);97 extern int udp_assoc_set_nolocal(udp_assoc_t *); 98 98 extern void udp_assoc_destroy(udp_assoc_t *); 99 extern errno_t udp_assoc_send_msg(udp_assoc_t *, inet_ep_t *, void *, size_t);99 extern int udp_assoc_send_msg(udp_assoc_t *, inet_ep_t *, void *, size_t); 100 100 extern void *udp_assoc_userptr(udp_assoc_t *); 101 101 extern size_t udp_rmsg_size(udp_rmsg_t *); 102 extern errno_t udp_rmsg_read(udp_rmsg_t *, size_t, void *, size_t);102 extern int udp_rmsg_read(udp_rmsg_t *, size_t, void *, size_t); 103 103 extern void udp_rmsg_remote_ep(udp_rmsg_t *, inet_ep_t *); 104 104 extern uint8_t udp_rerr_type(udp_rerr_t *);
Note:
See TracChangeset
for help on using the changeset viewer.