mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-06-16 02:15:47 +00:00
Reduce console spam
remove left over debug printf
This commit is contained in:
committed by
Dimitri John Ledkov
parent
9c69d4ab47
commit
b3d7cd0539
@@ -3,18 +3,9 @@
|
||||
int uip_tx_do_ipv4(struct uip_tx_arg *arg)
|
||||
{
|
||||
struct uip_ip *ip;
|
||||
int n;
|
||||
uint8_t *p;
|
||||
|
||||
ip = (struct uip_ip *)(arg->eth);
|
||||
|
||||
p = (uint8_t *)arg->eth;
|
||||
|
||||
for (n = 0; n < 64; n++) {
|
||||
printf("%02X ", *p++);
|
||||
if ((n & 7) == 7)
|
||||
printf("\n");
|
||||
}
|
||||
switch (ip->proto) {
|
||||
case UIP_IP_P_ICMP:
|
||||
uip_tx_do_ipv4_icmp(arg);
|
||||
|
||||
Reference in New Issue
Block a user