summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
AgeCommit message (Collapse)Author
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell
Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22indent has problems with comments that are on the right hand side of a line.Matt Caswell
Sometimes it fails to format them very well, and sometimes it corrupts them! This commit moves some particularly problematic ones. Conflicts: crypto/bn/bn.h crypto/ec/ec_lcl.h crypto/rsa/rsa.h demos/engines/ibmca/hw_ibmca.c ssl/ssl.h ssl/ssl3.h Conflicts: crypto/ec/ec_lcl.h ssl/tls1.h Conflicts: crypto/ec/ecp_nistp224.c crypto/evp/evp.h ssl/d1_both.c ssl/ssl.h ssl/ssl_lib.c Conflicts: crypto/bio/bss_file.c crypto/ec/ec_lcl.h crypto/evp/evp.h crypto/store/str_mem.c crypto/whrlpool/wp_block.c crypto/x509/x509_vfy.h ssl/ssl.h ssl/ssl3.h ssl/ssltest.c ssl/t1_lib.c ssl/tls1.h Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22Fix source where indent will not be able to copeMatt Caswell
Conflicts: apps/ciphers.c ssl/s3_pkt.c Conflicts: crypto/ec/ec_curve.c Conflicts: crypto/ec/ec_curve.c ssl/s3_clnt.c ssl/s3_srvr.c ssl/ssl_sess.c Conflicts: apps/ciphers.c crypto/bn/bn.h crypto/ec/ec_curve.c ssl/t1_enc.c ssl/t1_lib.c Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22Additional comment changes for reformat of 0.9.8Matt Caswell
Reviewed-by: Tim Hudson <tjh@openssl.org>
2014-10-15Add TLS_FALLBACK_SCSV documentation, and move s_client -fallback_scsvBodo Moeller
handling out of #ifndef OPENSSL_NO_DTLS1 section. Reviewed-by: Rich Salz <rsalz@openssl.org>
2014-10-15Support TLS_FALLBACK_SCSV.Bodo Moeller
Reviewed-by: Stephen Henson <steve@openssl.org>
2012-03-18Always use SSLv23_{client,server}_method in s_client.c and s_server.c,Dr. Stephen Henson
the old code came from SSLeay days before TLS was even supported.
2009-12-16New option to enable/disable connection to unpatched serversDr. Stephen Henson
2009-12-08Add ctrl and macro so we can determine if peer support secure renegotiation.Dr. Stephen Henson
Fix SSL_CIPHER initialiser for mcsv
2009-11-08First cut of renegotiation extension.Ben Laurie
2009-08-13PR: 1997Dr. Stephen Henson
Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de> Approved by: steve@openssl.org DTLS timeout handling fix.
2009-05-17Formatting fix.Dr. Stephen Henson
2009-05-17Modified PR#1929 update from 1.0.0-stable.Dr. Stephen Henson
2008-12-20Make no-engine work again...Dr. Stephen Henson
2008-11-24Revert OPENSSL_EXPERIMENTAL patch.Dr. Stephen Henson
Change it so JPAKE uses the standard OPENSSL_NO_JPAKE instead.
2008-11-12Add support for experimental code, not compiled in by default andDr. Stephen Henson
with OPENSSL_EXPERIMENTAL_FOO around it. Make JPAKE experimental.
2008-10-26Add JPAKE.Ben Laurie
2008-10-26Avoid warning.Dr. Stephen Henson
2008-10-22Allow detection of input EOF in quiet mode by adding -no_ign_eof optionLutz Jänicke
to s_client application. PR: #1761 Submitted by: David Woodhouse <dwmw2@infradead.org>
2008-10-14Add XMPP STARTTLS support.Ben Laurie
2008-06-04Oops... missed this part of backport.Dr. Stephen Henson
2008-06-04Backport s_client changes.Dr. Stephen Henson
2007-11-15Fix warnings.Ben Laurie
2007-10-12Backport certificate status request TLS extension support to 0.9.8.Dr. Stephen Henson
2007-08-23Update from HEAD.Dr. Stephen Henson
2007-08-23Update docs.Dr. Stephen Henson
2007-08-12Backport of TLS extension code to OpenSSL 0.9.8.Dr. Stephen Henson
Include server name and RFC4507bis support. This is not compiled in by default and must be explicitly enabled with the Configure option enable-tlsext
2007-07-04Fix more unused value warnings.Dr. Stephen Henson
2007-02-22Fix problem with multi line responses in -starttls by using a bufferingLutz Jänicke
BIO and BIO_gets().
2007-02-21Extend SMTP and IMAP protocol handling to perform the requiredLutz Jänicke
EHLO or CAPABILITY handshake before sending STARTTLS Submitted by: Goetz Babin-Ebell <goetz@shomitefo.de>
2007-02-18Avoid warning.Dr. Stephen Henson
2007-02-16Add STARTTLS support for IMAP and FTP.Richard Levitte
Submitted by Kees Cook <kees@outflux.net>
2006-11-29replace macros with functionsNils Larsch
Submitted by: Tracy Camp <tracyx.e.camp@intel.com>
2005-11-25Improve documentation.Ben Laurie
2005-09-30Update from HEAD.Dr. Stephen Henson
2005-05-30DJGPP changes. Contributed by Doug Kaufman <dkaufman@rahul.net>Richard Levitte
2005-04-27Lots of Win32 fixes for DTLS.Dr. Stephen Henson
1. "unsigned long long" isn't portable changed: to BN_ULLONG. 2. The LL prefix isn't allowed in VC++ but it isn't needed where it is used. 2. Avoid lots of compiler warnings about signed/unsigned mismatches. 3. Include new library directory pqueue in mk1mf build system. 4. Update symbols.
2005-04-26Fixes for signed/unsigned warnings and shadows.Dr. Stephen Henson
2005-04-26Add DTLS support.Ben Laurie
2005-04-05some const fixesNils Larsch
2005-01-04DJGPP update.Andy Polyakov
PR: 989 Submitted by: Doug Kaufman
2004-12-13Fix s_client so it works without a certificate again.Dr. Stephen Henson
2004-11-16PR: 910Dr. Stephen Henson
Add command line options -certform, -keyform and -pass to s_client and s_server. This supports the use of alternative passphrase sources, key formats and keys handled by an ENGINE. Update docs.
2004-08-12On systems that use case-insensitive symbol names (i.e. they're allRichard Levitte
converted to upper case or something like that), the application- level bio_dump_cb() has a name clash with the new library function BIO_dump_cb(). The easiest fix is to rename the function at the application level.
2004-06-28NetWare fixes provided by Verdon Walker for OpenSSL 0.9.8-dev.Richard Levitte
The changes have been mailed to <crypt@bis.doc.gov> as well. PR: 903
2003-11-28Netware-specific changes,Richard Levitte
PR: 780 Submitted by: Verdon Walker <VWalker@novell.com> Reviewed by: Richard Levitte
2003-11-04Avoid some shadowed variable names.Geoff Thorpe
Submitted by: Nils Larsch
2003-10-06s_client should inform the user of any compression/expansion methods used.Richard Levitte
2003-09-27Selected changes for MSDOS, contributed by Gisle Vanem <giva@bgnett.no>.Richard Levitte
PR: 669
2003-05-28Add minimum POP3 STLS hack to s_client.c (as was provided for STARTTLS before)Lutz Jänicke
Submitted by: dg@sunet.ru (Daniel Ginsburg) PR: #613