<quote who="Harry Ohlsen"> > I'm still thinking about your network byte order point, though. It may be > that it's only working because the browser and the server are running on the > same host (hence same architecture). I'll have to get someone else to try > accessing it once I have things going. >
You are talking about transmitting a binary stream. Conceptually, it is only a stream of bytes, which has no predefined byte-order. Byte ordering only applies when both sides are trying to interpret a set of bytes as an int or short int (for example). The bytes which represent a jpeg file are the same, on any platform... otherwise you'd have to convert from a 'little endian jpeg' to a 'big endian jpeg' even when you copied by floppy disk. J. -- Jan Schmidt [EMAIL PROTECTED] "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Unknown -- SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
