summaryrefslogtreecommitdiff
path: root/lib/gtls.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-12-28 12:40:20 +0100
committerYang Tse <yangsita@gmail.com>2012-12-28 19:37:11 +0100
commitf871de0064ee4bd3aee07c5b018f7a6438ec8910 (patch)
tree8a54d3693c887fe19cf895f1a86775f3f7e4bb70 /lib/gtls.c
parentec691ca34bbba56e365c6c923887cae338093f8a (diff)
downloadcurl-f871de0064ee4bd3aee07c5b018f7a6438ec8910.tar.gz
build: make use of 76 lib/*.h renamed files
76 private header files renamed to use our standard naming scheme. This change affects 322 files in libcurl's source tree.
Diffstat (limited to 'lib/gtls.c')
-rw-r--r--lib/gtls.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/gtls.c b/lib/gtls.c
index 8c2a4a0c9..4e2254109 100644
--- a/lib/gtls.c
+++ b/lib/gtls.c
@@ -28,7 +28,7 @@
* since they were not present in 1.0.X.
*/
-#include "setup.h"
+#include "curl_setup.h"
#ifdef USE_GNUTLS
@@ -42,21 +42,21 @@
#include <gcrypt.h>
#endif
-#include "urldata.h"
-#include "sendf.h"
-#include "inet_pton.h"
-#include "gtls.h"
-#include "sslgen.h"
-#include "parsedate.h"
-#include "connect.h" /* for the connect timeout */
-#include "select.h"
-#include "rawstr.h"
+#include "curl_urldata.h"
+#include "curl_sendf.h"
+#include "curl_inet_pton.h"
+#include "curl_gtls.h"
+#include "curl_sslgen.h"
+#include "curl_parsedate.h"
+#include "curl_connect.h" /* for the connect timeout */
+#include "curl_select.h"
+#include "curl_rawstr.h"
#define _MPRINTF_REPLACE /* use our functions only */
#include <curl/mprintf.h>
#include "curl_memory.h"
/* The last #include file should be: */
-#include "memdebug.h"
+#include "curl_memdebug.h"
/*
Some hackish cast macros based on:
@@ -94,7 +94,7 @@ static bool gtls_inited = FALSE;
/*
* Custom push and pull callback functions used by GNU TLS to read and write
* to the socket. These functions are simple wrappers to send() and recv()
- * (although here using the sread/swrite macros as defined by setup_once.h).
+ * (although here using sread/swrite macros as defined by curl_setup_once.h).
* We use custom functions rather than the GNU TLS defaults because it allows
* us to get specific about the fourth "flags" argument, and to use arbitrary
* private data with gnutls_transport_set_ptr if we wish.