Changeset c6588ce in mainline for uspace/srv/net/ethip/atrans.h
- Timestamp:
- 2012-05-05T08:12:17Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ee04c28
- Parents:
- 2cc7f16 (diff), d21e935c (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/ethip/atrans.h
r2cc7f16 rc6588ce 1 1 /* 2 * Copyright (c) 20 09 Lukas Mejdrech2 * Copyright (c) 2012 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libnet29 /** @addtogroup inet 30 30 * @{ 31 31 */ 32 33 /** @file34 * ICMP client interface.32 /** 33 * @file 34 * @brief 35 35 */ 36 36 37 #ifndef LIBNET_ICMP_CLIENT_H_38 #define LIBNET_ICMP_CLIENT_H_37 #ifndef ATRANS_H_ 38 #define ATRANS_H_ 39 39 40 #include < net/icmp_codes.h>41 #include <net/packet.h>40 #include <inet/iplink_srv.h> 41 #include "ethip.h" 42 42 43 extern int icmp_client_process_packet(packet_t *, icmp_type_t *, icmp_code_t *, 44 icmp_param_t *, icmp_param_t *); 45 extern size_t icmp_client_header_length(packet_t *); 43 extern int atrans_add(iplink_srv_addr_t *, mac48_addr_t *); 44 extern int atrans_remove(iplink_srv_addr_t *); 45 extern int atrans_lookup(iplink_srv_addr_t *, mac48_addr_t *); 46 extern int atrans_wait_timeout(suseconds_t); 46 47 47 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.