Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 1998 16:11:51 PDT
From:      Bill Fenner <fenner@parc.xerox.com>
To:        Nate Lawson <nate@almond.elite.net>
Cc:        fenner@parc.xerox.com (Bill Fenner), julian@whistle.com, freebsd-net@FreeBSD.ORG
Subject:   Re: Apparent bug in sendto() with raw sockets 
Message-ID:  <199806252311.QAA15301@mango.parc.xerox.com>
In-Reply-To: Your message of "Thu, 25 Jun 1998 15:20:43 PDT." <199806252220.PAA28609@almond.elite.net> 

next in thread | previous in thread | raw e-mail | index | archive | help
[I removed -bugs from the CC]

I take it back.  I think a socket option could work.  As your friend
suggested, byte order could be auto-determined, not just via
"ip_len > 32767" but by comparing the ip_len with the length of
the packet that was written and turning on the automagic byte swap
socket option if ip_len == htonl(send len).

This is kind of hokey magic, since if the output side set the socket
option automagically, the input side would be affected too.  If
you output before you input, everything would be in the order you'd
expect.  If you input first, then output, then input, you could
get awfully confused since the input behavior would change after
the first output.

(And if the output side didn't set the socket flag that affected
input, then a program written to assume no byte swapping would
end up with non-byte-swapped output but byte-swapped (and otherwise
munged) input...)

I'll work on a patch.

  Bill

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-net" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806252311.QAA15301>