http://qs321.pair.com?node_id=624503


in reply to Re: Max 16384 bytes
in thread Max 16384 bytes

On my box, from /usr/include/openssl/ssl3.h:
/* Due to MS stuffing up, this can change.... */ #if defined(OPENSSL_SYS_WIN16) || \ (defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_WIN32)) #define SSL3_RT_MAX_EXTRA (14000) #else #define SSL3_RT_MAX_EXTRA (16384) #endif

That's why... ;-)

--shmem

_($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                              /\_¯/(q    /
----------------------------  \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}

Replies are listed 'Best First'.
Re^3: Max 16384 bytes
by archfool (Monk) on Jul 02, 2007 at 19:08 UTC
    Sure.... take all the mystery out of the magical number. I mean... who'd have thought to go from Perl to C code.

    Great detective work!

    (Still should have been documented in the Perl code, too. ;)

Re^3: Max 16384 bytes
by bloonix (Monk) on Jul 03, 2007 at 06:14 UTC
    *argh* maybe I had to take a look into it?

    thanks!