// Prefix the ICMP header to the response buffer
icmpHdr.prefixTo(skbuf);
// Append the original message to the response buffer
skbuf.append(srcBuf);
// / RFC says return as much as we can without exceeding 576 bytes.
skbuf.trim(576);
ipService.transmit(ipHdr, skbuf);
}
}