Ethereal-users: Re: [Ethereal-users] TCP checksum problems...

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxx>
Date: Fri, 8 Jun 2001 17:51:22 -0700 (PDT)
> I'm building Ethereal 0.8.18 sources on MIPS/IRIX.

32-bit or 64-bit?

If it's 64-bit, try changing

	union {
		guint16 s[2];
		long	l;
	} l_util;

in "in_cksum.c" to

	union {
		guint16 s[2];
		guint32	l;
	} l_util;

(I'm assuming IRIX on 64-bit MIPS platforms is LP64) and see if that
helps.