Changes in uspace/srv/net/udp/assoc.h [451481c8:2989c7e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/assoc.h
r451481c8 r2989c7e 1 1 /* 2 * Copyright (c) 201 2Jiri Svoboda2 * Copyright (c) 2015 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 36 36 #define ASSOC_H 37 37 38 #include <inet/endpoint.h> 39 #include <ipc/loc.h> 38 40 #include <sys/types.h> 39 41 #include "udp_type.h" 40 42 41 extern udp_assoc_t *udp_assoc_new(udp_sock_t *, udp_sock_t *); 43 extern int udp_assocs_init(void); 44 extern udp_assoc_t *udp_assoc_new(inet_ep2_t *, udp_assoc_cb_t *, void *); 42 45 extern void udp_assoc_delete(udp_assoc_t *); 43 extern voidudp_assoc_add(udp_assoc_t *);46 extern int udp_assoc_add(udp_assoc_t *); 44 47 extern void udp_assoc_remove(udp_assoc_t *); 45 48 extern void udp_assoc_addref(udp_assoc_t *); 46 49 extern void udp_assoc_delref(udp_assoc_t *); 47 extern void udp_assoc_set_foreign(udp_assoc_t *, udp_sock_t *); 48 extern void udp_assoc_set_local(udp_assoc_t *, udp_sock_t *); 49 extern void udp_assoc_set_local_port(udp_assoc_t *, uint16_t); 50 extern int udp_assoc_send(udp_assoc_t *, udp_sock_t *, udp_msg_t *); 51 extern int udp_assoc_recv(udp_assoc_t *, udp_msg_t **, udp_sock_t *); 52 extern void udp_assoc_received(udp_sockpair_t *, udp_msg_t *); 53 50 extern void udp_assoc_set_iplink(udp_assoc_t *, service_id_t); 51 extern int udp_assoc_send(udp_assoc_t *, inet_ep_t *, udp_msg_t *); 52 extern int udp_assoc_recv(udp_assoc_t *, udp_msg_t **, inet_ep_t *); 53 extern void udp_assoc_received(inet_ep2_t *, udp_msg_t *); 54 extern void udp_assoc_reset(udp_assoc_t *); 54 55 55 56 #endif
Note:
See TracChangeset
for help on using the changeset viewer.