What is the easiest way to get total bytes of ALL SSL packets
(incoming & outgoing @ the client side) for receiving one single
file via SSL? (i.e. original file size + SSL overhead)
The original file is about 50K. What should be the overhead in size?

Can I do:

 s_client -debug -connect XXX.com:443 ... | grep "read from"

 read from 08089300 [080A3000] (7 bytes => 7 (0x7))
 read from 08089300 [080A3007] (72 bytes => 72 (0x48))
 read from 08089300 [080A3000] (5 bytes => 5 (0x5))
 ...

Then, add up all the bytes for INCOMING bytes.

And, do

 s_client -debug -connect XXX.com:443 ... | grep "write to"

Then add up all the bytes for OUTGOING bytes.

Many thanks.

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to