diff options
author | Hoi-Ho Chan <hoiho.chan@gmail.com> | 2010-05-05 22:30:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-05 22:30:46 +0200 |
commit | 51427e1947ddc07b4ce8ad9dcb04846125170f83 (patch) | |
tree | 1f9bec31da95f2aaf4cf288d9c85562437e6aacf /lib/sslgen.c | |
parent | 1de6b97a768f56a1c8b67d2165da67569afebec4 (diff) | |
download | curl-51427e1947ddc07b4ce8ad9dcb04846125170f83.tar.gz |
PolarSSL: initial support added
This is Hoi-Ho Chan's patch with some minor fixes by me. There
are some potential issues in this, but none worse than we can
sort out on the list and over time.
Diffstat (limited to 'lib/sslgen.c')
-rw-r--r-- | lib/sslgen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sslgen.c b/lib/sslgen.c index df2a4075a..24b6dcbd6 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -31,6 +31,7 @@ Curl_ossl_ - prefix for OpenSSL ones Curl_gtls_ - prefix for GnuTLS ones Curl_nss_ - prefix for NSS ones + Curl_polarssl_ - prefix for PolarSSL ones Note that this source code uses curlssl_* functions, and they are all defines/macros #defined by the lib-specific header files. @@ -55,6 +56,7 @@ #include "gtls.h" /* GnuTLS versions */ #include "nssg.h" /* NSS versions */ #include "qssl.h" /* QSOSSL versions */ +#include "polarssl.h" /* PolarSSL versions */ #include "sendf.h" #include "rawstr.h" #include "url.h" |