Changeset 609243f4 in mainline for uspace/srv/net/tl/udp/udp.c
- Timestamp:
- 2011-10-07T15:46:01Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2c50e1
- Parents:
- f51b1d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp.c
rf51b1d3 r609243f4 124 124 * ip_client_process_packet() function. 125 125 */ 126 static int udp_process_packet( device_id_t device_id, packet_t *packet,126 static int udp_process_packet(nic_device_id_t device_id, packet_t *packet, 127 127 services_t error) 128 128 { … … 322 322 * udp_process_packet() function. 323 323 */ 324 static int udp_received_msg( device_id_t device_id, packet_t *packet,324 static int udp_received_msg(nic_device_id_t device_id, packet_t *packet, 325 325 services_t receiver, services_t error) 326 326 { … … 499 499 void *ip_header; 500 500 size_t headerlen; 501 device_id_t device_id;501 nic_device_id_t device_id; 502 502 packet_dimension_t *packet_dimension; 503 503 size_t size; … … 617 617 htons(flip_checksum(compact_checksum(checksum))); 618 618 free(ip_header); 619 } else { 620 device_id = DEVICE_INVALID_ID; 621 } 619 } else 620 device_id = NIC_DEVICE_INVALID_ID; 622 621 623 622 /* Prepare the first packet fragment */ … … 806 805 size = MAX_UDP_FRAGMENT_SIZE; 807 806 if (tl_get_ip_packet_dimension(udp_globals.ip_sess, 808 &udp_globals.dimensions, DEVICE_INVALID_ID,807 &udp_globals.dimensions, NIC_DEVICE_INVALID_ID, 809 808 &packet_dimension) == EOK) { 810 809 if (packet_dimension->content < size)
Note:
See TracChangeset
for help on using the changeset viewer.