Changeset 9749e47 in mainline for uspace/lib/c/include
- Timestamp:
- 2013-10-04T19:23:43Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1d04b2
- Parents:
- 26de91a
- Location:
- uspace/lib/c/include
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/inet/inetping.h
r26de91a r9749e47 1 1 /* 2 * Copyright (c) 201 2Jiri Svoboda2 * Copyright (c) 2013 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 46 46 extern int inetping_init(inetping_ev_ops_t *); 47 47 extern int inetping_send(inetping_sdu_t *); 48 extern int inetping_get_srcaddr( uint32_t, uint32_t *);48 extern int inetping_get_srcaddr(const inet_addr_t *, inet_addr_t *); 49 49 50 50 #endif -
uspace/lib/c/include/ipc/inet.h
r26de91a r9749e47 92 92 } inetping_request_t; 93 93 94 /** Events on Inet ping6 port */95 typedef enum {96 INETPING6_EV_RECV = IPC_FIRST_USER_METHOD97 } inetping6_event_t;98 99 /** Requests on Inet ping6 port */100 typedef enum {101 INETPING6_SEND = IPC_FIRST_USER_METHOD,102 INETPING6_GET_SRCADDR103 } inetping6_request_t;104 105 94 #endif 106 95 -
uspace/lib/c/include/types/inetping.h
r26de91a r9749e47 38 38 #define LIBC_TYPES_INETPING_H_ 39 39 40 #include <inet/addr.h> 40 41 #include <sys/types.h> 41 42 42 43 typedef struct { 43 uint32_t src;44 uint32_t dest;44 inet_addr_t src; 45 inet_addr_t dest; 45 46 uint16_t seq_no; 46 47 void *data;
Note:
See TracChangeset
for help on using the changeset viewer.