mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
vtls: renamed sslgen.[ch] to vtls.[ch]
This commit is contained in:
parent
92b9ae5c5d
commit
11e8066ef9
@ -16,7 +16,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c \
|
|||||||
content_encoding.c share.c http_digest.c md4.c md5.c \
|
content_encoding.c share.c http_digest.c md4.c md5.c \
|
||||||
http_negotiate.c inet_pton.c strtoofft.c strerror.c amigaos.c \
|
http_negotiate.c inet_pton.c strtoofft.c strerror.c amigaos.c \
|
||||||
hostasyn.c hostip4.c hostip6.c hostsyn.c inet_ntop.c parsedate.c \
|
hostasyn.c hostip4.c hostip6.c hostsyn.c inet_ntop.c parsedate.c \
|
||||||
select.c vtls/gtls.c vtls/sslgen.c tftp.c splay.c strdup.c socks.c ssh.c vtls/nss.c \
|
select.c vtls/gtls.c vtls/vtls.c tftp.c splay.c strdup.c socks.c ssh.c vtls/nss.c \
|
||||||
vtls/qssl.c rawstr.c curl_addrinfo.c socks_gssapi.c socks_sspi.c \
|
vtls/qssl.c rawstr.c curl_addrinfo.c socks_gssapi.c socks_sspi.c \
|
||||||
curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c pop3.c smtp.c \
|
curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c pop3.c smtp.c \
|
||||||
pingpong.c rtsp.c curl_threads.c warnless.c hmac.c vtls/polarssl.c \
|
pingpong.c rtsp.c curl_threads.c warnless.c hmac.c vtls/polarssl.c \
|
||||||
@ -36,7 +36,7 @@ HHEADERS = arpa_telnet.h netrc.h file.h timeval.h vtls/qssl.h hostip.h \
|
|||||||
connect.h llist.h hash.h content_encoding.h share.h curl_md4.h \
|
connect.h llist.h hash.h content_encoding.h share.h curl_md4.h \
|
||||||
curl_md5.h http_digest.h http_negotiate.h inet_pton.h amigaos.h \
|
curl_md5.h http_digest.h http_negotiate.h inet_pton.h amigaos.h \
|
||||||
strtoofft.h strerror.h inet_ntop.h curlx.h curl_memory.h curl_setup.h \
|
strtoofft.h strerror.h inet_ntop.h curlx.h curl_memory.h curl_setup.h \
|
||||||
transfer.h select.h easyif.h multiif.h parsedate.h vtls/sslgen.h vtls/gtls.h \
|
transfer.h select.h easyif.h multiif.h parsedate.h vtls/vtls.h vtls/gtls.h \
|
||||||
tftp.h sockaddr.h splay.h strdup.h socks.h ssh.h vtls/nssg.h curl_base64.h \
|
tftp.h sockaddr.h splay.h strdup.h socks.h ssh.h vtls/nssg.h curl_base64.h \
|
||||||
rawstr.h curl_addrinfo.h curl_sspi.h slist.h nonblock.h \
|
rawstr.h curl_addrinfo.h curl_sspi.h slist.h nonblock.h \
|
||||||
curl_memrchr.h imap.h pop3.h smtp.h pingpong.h rtsp.h curl_threads.h \
|
curl_memrchr.h imap.h pop3.h smtp.h pingpong.h rtsp.h curl_threads.h \
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
#include "sockaddr.h" /* required for Curl_sockaddr_storage */
|
#include "sockaddr.h" /* required for Curl_sockaddr_storage */
|
||||||
#include "inet_ntop.h"
|
#include "inet_ntop.h"
|
||||||
#include "inet_pton.h"
|
#include "inet_pton.h"
|
||||||
#include "vtls/sslgen.h" /* for Curl_ssl_check_cxn() */
|
#include "vtls/vtls.h" /* for Curl_ssl_check_cxn() */
|
||||||
#include "progress.h"
|
#include "progress.h"
|
||||||
#include "warnless.h"
|
#include "warnless.h"
|
||||||
#include "conncache.h"
|
#include "conncache.h"
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
# include "curl_sspi.h"
|
# include "curl_sspi.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
|
|
||||||
#define BUILDING_CURL_NTLM_MSGS_C
|
#define BUILDING_CURL_NTLM_MSGS_C
|
||||||
#include "curl_ntlm_msgs.h"
|
#include "curl_ntlm_msgs.h"
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
#include "curl_base64.h"
|
#include "curl_base64.h"
|
||||||
#include "curl_md5.h"
|
#include "curl_md5.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "curl_hmac.h"
|
#include "curl_hmac.h"
|
||||||
#include "curl_ntlm_msgs.h"
|
#include "curl_ntlm_msgs.h"
|
||||||
#include "curl_sasl.h"
|
#include "curl_sasl.h"
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
#include "urldata.h"
|
#include "urldata.h"
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
#include "transfer.h"
|
#include "transfer.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "url.h"
|
#include "url.h"
|
||||||
#include "getinfo.h"
|
#include "getinfo.h"
|
||||||
#include "hostip.h"
|
#include "hostip.h"
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#include "urldata.h" /* for struct SessionHandle */
|
#include "urldata.h" /* for struct SessionHandle */
|
||||||
#include "formdata.h"
|
#include "formdata.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "curl_memory.h"
|
#include "curl_memory.h"
|
||||||
#include "sendf.h"
|
#include "sendf.h"
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
#include "curl_sec.h"
|
#include "curl_sec.h"
|
||||||
#include "strtoofft.h"
|
#include "strtoofft.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "strerror.h"
|
#include "strerror.h"
|
||||||
#include "inet_ntop.h"
|
#include "inet_ntop.h"
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include "getinfo.h"
|
#include "getinfo.h"
|
||||||
|
|
||||||
#include "curl_memory.h"
|
#include "curl_memory.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "connect.h" /* Curl_getconnectinfo() */
|
#include "connect.h" /* Curl_getconnectinfo() */
|
||||||
#include "progress.h"
|
#include "progress.h"
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
#include "curl_base64.h"
|
#include "curl_base64.h"
|
||||||
#include "cookie.h"
|
#include "cookie.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "http_digest.h"
|
#include "http_digest.h"
|
||||||
#include "curl_ntlm.h"
|
#include "curl_ntlm.h"
|
||||||
#include "curl_ntlm_wb.h"
|
#include "curl_ntlm_wb.h"
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#include "http_digest.h"
|
#include "http_digest.h"
|
||||||
#include "strtok.h"
|
#include "strtok.h"
|
||||||
#include "curl_memory.h"
|
#include "curl_memory.h"
|
||||||
#include "vtls/sslgen.h" /* for Curl_rand() */
|
#include "vtls/vtls.h" /* for Curl_rand() */
|
||||||
#include "non-ascii.h" /* included for Curl_convert_... prototypes */
|
#include "non-ascii.h" /* included for Curl_convert_... prototypes */
|
||||||
#include "warnless.h"
|
#include "warnless.h"
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
|
|
||||||
#include "strtoofft.h"
|
#include "strtoofft.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "strerror.h"
|
#include "strerror.h"
|
||||||
#include "select.h"
|
#include "select.h"
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
#include "urldata.h"
|
#include "urldata.h"
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
#include "sendf.h"
|
#include "sendf.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "transfer.h"
|
#include "transfer.h"
|
||||||
#include "curl_ldap.h"
|
#include "curl_ldap.h"
|
||||||
#include "curl_memory.h"
|
#include "curl_memory.h"
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
#include "pingpong.h"
|
#include "pingpong.h"
|
||||||
#include "multiif.h"
|
#include "multiif.h"
|
||||||
#include "non-ascii.h"
|
#include "non-ascii.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
|
|
||||||
#define _MPRINTF_REPLACE /* use our functions only */
|
#define _MPRINTF_REPLACE /* use our functions only */
|
||||||
#include <curl/mprintf.h>
|
#include <curl/mprintf.h>
|
||||||
|
@ -73,7 +73,7 @@
|
|||||||
|
|
||||||
#include "strtoofft.h"
|
#include "strtoofft.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "strerror.h"
|
#include "strerror.h"
|
||||||
#include "select.h"
|
#include "select.h"
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
#include "urldata.h"
|
#include "urldata.h"
|
||||||
#include "sendf.h"
|
#include "sendf.h"
|
||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "multiif.h"
|
#include "multiif.h"
|
||||||
#include "non-ascii.h"
|
#include "non-ascii.h"
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
#include "urldata.h"
|
#include "urldata.h"
|
||||||
#include "share.h"
|
#include "share.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "curl_memory.h"
|
#include "curl_memory.h"
|
||||||
|
|
||||||
/* The last #include file should be: */
|
/* The last #include file should be: */
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
|
|
||||||
#include "strtoofft.h"
|
#include "strtoofft.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "strerror.h"
|
#include "strerror.h"
|
||||||
#include "select.h"
|
#include "select.h"
|
||||||
|
@ -73,7 +73,7 @@
|
|||||||
#include "getinfo.h"
|
#include "getinfo.h"
|
||||||
|
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "connect.h"
|
#include "connect.h"
|
||||||
#include "strerror.h"
|
#include "strerror.h"
|
||||||
#include "inet_ntop.h"
|
#include "inet_ntop.h"
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
#include "http.h"
|
#include "http.h"
|
||||||
#include "url.h"
|
#include "url.h"
|
||||||
#include "getinfo.h"
|
#include "getinfo.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "http_digest.h"
|
#include "http_digest.h"
|
||||||
#include "curl_ntlm.h"
|
#include "curl_ntlm.h"
|
||||||
#include "http_negotiate.h"
|
#include "http_negotiate.h"
|
||||||
|
@ -78,7 +78,7 @@ int curl_win32_idn_to_ascii(const char *in, char **out);
|
|||||||
#include "netrc.h"
|
#include "netrc.h"
|
||||||
|
|
||||||
#include "formdata.h"
|
#include "formdata.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "hostip.h"
|
#include "hostip.h"
|
||||||
#include "transfer.h"
|
#include "transfer.h"
|
||||||
#include "sendf.h"
|
#include "sendf.h"
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
#include "urldata.h"
|
#include "urldata.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "http2.h"
|
#include "http2.h"
|
||||||
|
|
||||||
#define _MPRINTF_REPLACE /* use the internal *printf() functions */
|
#define _MPRINTF_REPLACE /* use the internal *printf() functions */
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
#include "slist.h"
|
#include "slist.h"
|
||||||
#include "strequal.h"
|
#include "strequal.h"
|
||||||
#include "select.h"
|
#include "select.h"
|
||||||
#include "vtls/sslgen.h"
|
#include "vtls/vtls.h"
|
||||||
#include "rawstr.h"
|
#include "rawstr.h"
|
||||||
#include "hostcheck.h"
|
#include "hostcheck.h"
|
||||||
|
|
||||||
|
@ -58,8 +58,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "urldata.h"
|
#include "urldata.h"
|
||||||
#define SSLGEN_C
|
|
||||||
#include "sslgen.h" /* generic SSL protos etc */
|
#include "vtls.h" /* generic SSL protos etc */
|
||||||
#include "openssl.h" /* OpenSSL versions */
|
#include "openssl.h" /* OpenSSL versions */
|
||||||
#include "gtls.h" /* GnuTLS versions */
|
#include "gtls.h" /* GnuTLS versions */
|
||||||
#include "nssg.h" /* NSS versions */
|
#include "nssg.h" /* NSS versions */
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef HEADER_CURL_SSLGEN_H
|
#ifndef HEADER_CURL_VTLS_H
|
||||||
#define HEADER_CURL_SSLGEN_H
|
#define HEADER_CURL_VTLS_H
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
* _ _ ____ _
|
* _ _ ____ _
|
||||||
* Project ___| | | | _ \| |
|
* Project ___| | | | _ \| |
|
||||||
@ -7,7 +7,7 @@
|
|||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
*
|
*
|
||||||
* This software is licensed as described in the file COPYING, which
|
* This software is licensed as described in the file COPYING, which
|
||||||
* you should have received as part of this distribution. The terms
|
* you should have received as part of this distribution. The terms
|
||||||
@ -123,4 +123,4 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */
|
|||||||
#define Curl_ssl_kill_session(x) Curl_nop_stmt
|
#define Curl_ssl_kill_session(x) Curl_nop_stmt
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* HEADER_CURL_SSLGEN_H */
|
#endif /* HEADER_CURL_VTLS_H */
|
Loading…
Reference in New Issue
Block a user