Is there a way to tell IO::Socket::SSL to indicate to the server that it should use compression?

I don't know. I would think that, to begin with, both the openssl library against which IO::Socket::SSL (client) has been built, and the openssl library on the server would need to have been built with zlib support. Even then you'll probably have to rely on IO::Socket::SSL having been written with the capability of passing on the request for compression - which, one would hope, is documented (if such a capability exists).

I gather that ZLib is built into OpenSSL by default now

Best to check on that. When I built 0.9.8g a week or so ago, zlib support was certainly *not* the default for me - I had to explicitly declare zlib and -lz as ./config arguments.

When building openssl-0.9.8g you'll see lots of occurrences of -DZLIB during 'make' iff it's being built with zlib support. And during 'make test' you'll see numerous lines stating Available compression methods:. Iff zlib support was included it will be specified following each of those lines.

There are probably other ways to verify whether zlib compression was included, but I don't know what they are.

Cheers,
Rob

In reply to Re: Using ZLib with IO::Socket::SSL? by syphilis
in thread Using ZLib with IO::Socket::SSL? by ethrbunny

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.