Changeset 49bd793b in mainline for uspace/srv
- Timestamp:
- 2011-10-07T21:42:14Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 80099c19
- Parents:
- 00d7e1b
- Location:
- uspace/srv/net
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/nildummy/nildummy.c
r00d7e1b r49bd793b 136 136 device->mtu = NET_DEFAULT_MTU; 137 137 138 printf("Device %d already exists :\tMTU\t= %zu\n", device->device_id,138 printf("Device %d already exists (mtu: %zu)\n", device->device_id, 139 139 device->mtu); 140 140 fibril_rwlock_write_unlock(&nildummy_globals.devices_lock); -
uspace/srv/net/tl/icmp/icmp.c
r00d7e1b r49bd793b 753 753 return rc; 754 754 755 rc = icmp_echo(icmp_id, icmp_seq, ICMP_GET_SIZE(*call), 755 rc = icmp_echo(icmp_id, icmp_seq, ICMP_GET_SIZE(*call), 756 756 ICMP_GET_TIMEOUT(*call), ICMP_GET_TTL(*call), 757 757 ICMP_GET_TOS(*call), ICMP_GET_DONT_FRAGMENT(*call), -
uspace/srv/net/tl/tcp/tcp.c
r00d7e1b r49bd793b 1651 1651 /* Sent packet? */ 1652 1652 packet = pq_find(socket_data->outgoing, sequence_number); 1653 printf("retransmit %lu\n", packet_get_id(packet));1654 1653 if (packet) { 1655 1654 pq_get_order(packet, NULL, &data_length); … … 1790 1789 1791 1790 /* Send the packet */ 1792 printf("connecting %lu\n", packet_get_id(packet));1793 1791 tcp_send_packets(socket_data->device_id, packet); 1794 1792
Note:
See TracChangeset
for help on using the changeset viewer.