diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-07-31 12:19:51 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-31 12:19:51 +0200 |
commit | a439e438f3662f12c003bda3c8cc3f6de09b4da0 (patch) | |
tree | 953d5cb7766efbcc4e63f47caa420a9e4a303a41 /lib/vtls/gskit.h | |
parent | 028a408d57cfcc891b9b88f1d56bc130980e11d0 (diff) | |
download | curl-a439e438f3662f12c003bda3c8cc3f6de09b4da0.tar.gz |
ssl: generalize how the ssl backend identifier is set
Each backend now defines CURL_SSL_BACKEND accordingly. Added the *AXTLS
one which was missing previously.
Diffstat (limited to 'lib/vtls/gskit.h')
-rw-r--r-- | lib/vtls/gskit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vtls/gskit.h b/lib/vtls/gskit.h index 7c50452ad..a4caa6f23 100644 --- a/lib/vtls/gskit.h +++ b/lib/vtls/gskit.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -59,6 +59,7 @@ int Curl_gskit_check_cxn(struct connectdata * cxn); #define curlssl_version Curl_gskit_version #define curlssl_check_cxn(x) Curl_gskit_check_cxn(x) #define curlssl_data_pending(x,y) 0 +#define CURL_SSL_BACKEND CURLSSLBACKEND_GSKIT #endif /* USE_GSKIT */ #endif /* HEADER_CURL_GSKIT_H */ |