On Wed, 4 Feb 2004, Gisle Vanem wrote:
> How do I prevent Lynx from sending this in the header?
> I tried rebuilding without USE_ZLIB, USE_BZLIB and OK_GZIP
> but "Accept-encoding: gzip" is still sent.
see WWW/Library/Implementation/HTTP.c line 755:
#if defined(USE_ZLIB) || defined(GZIP_PATH)
StrAllocCopy(list, "gzip");
#endif
#if defined(USE_ZLIB) || defined(COMPRESS_PATH)
if (list != 0)
StrAllocCat(list, ", ");
StrAllocCat(list, "compress");
#endif
--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
; To UNSUBSCRIBE: Send "unsubscribe lynx-dev" to [EMAIL PROTECTED]