
23 Jul
2009
23 Jul
'09
midnight
When I looked at the RFC data it appears that the overhead of IP fragmentation and reassembly (which does add overhead as the number of gateways increases) may be worth the time...
Just tried it: U-Boot doesn't support reassembly, it seems.
net.c confirms it:
/* Can't deal with fragments */ if (ip->ip_off & htons(IP_OFFS | IP_FLAGS_MFRAG)) { return; }
I don't think it's worth adding.
/alessandro