Changeset 46d4d9f in mainline for uspace/lib/net/il
- Timestamp:
- 2010-11-20T17:04:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dd5046dd
- Parents:
- fdbc3ff
- Location:
- uspace/lib/net/il
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/il/il_interface.c
rfdbc3ff r46d4d9f 77 77 * 78 78 */ 79 int il_received_msg(int il_phone, device_id_t device_id, packet_t packet,79 int il_received_msg(int il_phone, device_id_t device_id, packet_t *packet, 80 80 services_t target) 81 81 { -
uspace/lib/net/il/ip_client.c
rfdbc3ff r46d4d9f 51 51 * @return Zero if there is no IP header. 52 52 */ 53 size_t ip_client_header_length(packet_t packet)53 size_t ip_client_header_length(packet_t *packet) 54 54 { 55 55 ip_header_t *header; … … 152 152 */ 153 153 int 154 ip_client_prepare_packet(packet_t packet, ip_protocol_t protocol, ip_ttl_t ttl,154 ip_client_prepare_packet(packet_t *packet, ip_protocol_t protocol, ip_ttl_t ttl, 155 155 ip_tos_t tos, int dont_fragment, size_t ipopt_length) 156 156 { … … 208 208 */ 209 209 int 210 ip_client_process_packet(packet_t packet, ip_protocol_t *protocol,210 ip_client_process_packet(packet_t *packet, ip_protocol_t *protocol, 211 211 ip_ttl_t *ttl, ip_tos_t *tos, int *dont_fragment, size_t *ipopt_length) 212 212 { -
uspace/lib/net/il/ip_remote.c
rfdbc3ff r46d4d9f 204 204 */ 205 205 int ip_received_error_msg_remote(int ip_phone, device_id_t device_id, 206 packet_t packet, services_t target, services_t error)206 packet_t *packet, services_t target, services_t error) 207 207 { 208 208 return generic_received_msg_remote(ip_phone, NET_IP_RECEIVED_ERROR, … … 225 225 * function. 226 226 */ 227 int ip_send_msg_remote(int ip_phone, device_id_t device_id, packet_t packet,227 int ip_send_msg_remote(int ip_phone, device_id_t device_id, packet_t *packet, 228 228 services_t sender, services_t error) 229 229 {
Note:
See TracChangeset
for help on using the changeset viewer.