Changes in uspace/srv/net/udp/assoc.h [2989c7e:451481c8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/assoc.h
r2989c7e r451481c8 1 1 /* 2 * Copyright (c) 201 5Jiri Svoboda2 * Copyright (c) 2012 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>40 38 #include <sys/types.h> 41 39 #include "udp_type.h" 42 40 43 extern int udp_assocs_init(void); 44 extern udp_assoc_t *udp_assoc_new(inet_ep2_t *, udp_assoc_cb_t *, void *); 41 extern udp_assoc_t *udp_assoc_new(udp_sock_t *, udp_sock_t *); 45 42 extern void udp_assoc_delete(udp_assoc_t *); 46 extern intudp_assoc_add(udp_assoc_t *);43 extern void udp_assoc_add(udp_assoc_t *); 47 44 extern void udp_assoc_remove(udp_assoc_t *); 48 45 extern void udp_assoc_addref(udp_assoc_t *); 49 46 extern void udp_assoc_delref(udp_assoc_t *); 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 *); 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 55 54 56 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.