Changes in uspace/lib/net/include/tl_common.h [46d4d9f:609243f4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/tl_common.h
r46d4d9f r609243f4 27 27 */ 28 28 29 /** @addtogroup libnet 29 /** @addtogroup libnet 30 30 * @{ 31 31 */ … … 39 39 40 40 #include <ipc/services.h> 41 42 41 #include <net/socket_codes.h> 43 42 #include <net/packet.h> 44 43 #include <net/device.h> 45 44 #include <net/inet.h> 45 #include <async.h> 46 46 47 47 /** Device packet dimensions. … … 51 51 DEVICE_MAP_DECLARE(packet_dimensions, packet_dimension_t); 52 52 53 extern int tl_get_ip_packet_dimension( int, packet_dimensions_t *,54 device_id_t, packet_dimension_t **);53 extern int tl_get_ip_packet_dimension(async_sess_t *, packet_dimensions_t *, 54 nic_device_id_t, packet_dimension_t **); 55 55 extern int tl_get_address_port(const struct sockaddr *, int, uint16_t *); 56 extern int tl_update_ip_packet_dimension(packet_dimensions_t *, device_id_t,56 extern int tl_update_ip_packet_dimension(packet_dimensions_t *, nic_device_id_t, 57 57 size_t); 58 58 extern int tl_set_address_port(struct sockaddr *, int, uint16_t); 59 extern int tl_prepare_icmp_packet(int, int, packet_t *, services_t); 60 extern int tl_socket_read_packet_data(int, packet_t **, size_t, 59 extern int tl_prepare_icmp_packet(async_sess_t *, async_sess_t *, packet_t *, 60 services_t); 61 extern int tl_socket_read_packet_data(async_sess_t *, packet_t **, size_t, 61 62 const packet_dimension_t *, const struct sockaddr *, socklen_t); 62 63 … … 65 66 /** @} 66 67 */ 67
Note:
See TracChangeset
for help on using the changeset viewer.