Speaking of dead code:
sys/netinet/tcpip.h:
struct full_tcpiphdr{} appears to not be used. It was added in 1995 for
some T/TCP stuff.
Anyone know if this is used outside of our sources?
ipfilter seemingly defines its own version of it in the contrib
directory, but it also doesn't use it. :P
-On [20010209 02:00], Luigi Rizzo ([EMAIL PROTECTED]) wrote:
>and maybe it would be the case to remove the first block and the
>conditionals on the second one. I don't think we plan a port to the
>vax, am i wrong ?
Personally I'd be happier if this got removed. We don't intend to port
to VAX, an
So, ip_output.c contains the following:
#ifdef vax
#include
#endif
...
#ifndef vax
if (m->m_len % sizeof(int32_t))
goto bad;
#endif
and maybe it would be the case to remove the first block and the
conditiona