Changes in uspace/srv/net/udp/pdu.h [2f19103:69a93df7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/udp/pdu.h
r2f19103 r69a93df7 1 1 /* 2 * Copyright (c) 201 5Jiri Svoboda2 * Copyright (c) 2012 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 36 36 #define PDU_H 37 37 38 #include <inet/endpoint.h>39 38 #include <sys/types.h> 40 39 #include "std.h" … … 43 42 extern udp_pdu_t *udp_pdu_new(void); 44 43 extern void udp_pdu_delete(udp_pdu_t *); 45 extern int udp_pdu_decode(udp_pdu_t *, inet_ep2_t *, udp_msg_t **);46 extern int udp_pdu_encode( inet_ep2_t *, udp_msg_t *, udp_pdu_t **);44 extern int udp_pdu_decode(udp_pdu_t *, udp_sockpair_t *, udp_msg_t **); 45 extern int udp_pdu_encode(udp_sockpair_t *, udp_msg_t *, udp_pdu_t **); 47 46 48 47 #endif
Note:
See TracChangeset
for help on using the changeset viewer.