Changeset 779541b in mainline for uspace/lib/c/include/inet/udp.h
- Timestamp:
- 2015-05-09T13:43:50Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1d4b815
- Parents:
- 99ea91b2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/inet/udp.h
r99ea91b2 r779541b 41 41 #include <inet/inet.h> 42 42 43 /** UDP link state */ 43 44 typedef enum { 44 45 udp_ls_down, … … 46 47 } udp_link_state_t; 47 48 49 /** UDP received message */ 48 50 typedef struct { 49 51 struct udp *udp; … … 53 55 } udp_rmsg_t; 54 56 57 /** UDP received error */ 55 58 typedef struct { 56 59 } udp_rerr_t; 57 60 61 /** UDP association */ 58 62 typedef struct { 59 63 struct udp *udp; … … 64 68 } udp_assoc_t; 65 69 70 /** UDP callbacks */ 66 71 typedef struct udp_cb { 67 72 void (*recv_msg)(udp_assoc_t *, udp_rmsg_t *); … … 70 75 } udp_cb_t; 71 76 77 /** UDP service */ 72 78 typedef struct udp { 73 79 /** UDP session */
Note:
See TracChangeset
for help on using the changeset viewer.