Changeset 98abd40 in mainline for uspace/srv/net/inetsrv/inetsrv.h
- Timestamp:
- 2013-07-06T21:57:22Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c8bb1633, cdc8a391
- Parents:
- b8e72fd1 (diff), 507c6f3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/inetsrv/inetsrv.h
rb8e72fd1 r98abd40 63 63 } inetping_client_t; 64 64 65 /** Inetping6 Client */ 66 typedef struct { 67 /** Callback session */ 68 async_sess_t *sess; 69 /** Session identifier */ 70 uint16_t ident; 71 /** Link to client list */ 72 link_t client_list; 73 } inetping6_client_t; 74 65 75 /** Address object info */ 66 76 typedef struct { … … 172 182 173 183 typedef struct { 174 inet_addr_t src;175 inet_addr_t dest;184 uint32_t src; 185 uint32_t dest; 176 186 uint16_t seq_no; 177 187 void *data; 178 188 size_t size; 179 189 } inetping_sdu_t; 190 191 typedef struct { 192 addr128_t src; 193 addr128_t dest; 194 uint16_t seq_no; 195 void *data; 196 size_t size; 197 } inetping6_sdu_t; 180 198 181 199 extern int inet_ev_recv(inet_client_t *, inet_dgram_t *);
Note:
See TracChangeset
for help on using the changeset viewer.