Changes in uspace/srv/net/inetsrv/inetsrv.h [1c7ba2d:1d24ad3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/inetsrv/inetsrv.h
r1c7ba2d r1d24ad3 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.