]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
Rename server_certificate_path() to server_certificate_file().
authorSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 19:33:52 +0000 (21:33 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 19:33:52 +0000 (21:33 +0200)
src/connection.c
src/verify.c
src/verify.h

index f15f4c15c2380bf19bf8e46ca1b1a297c3fdee73..0a69f78b228e1b4e64af911bdd4fe8ace64f1fbf 100644 (file)
@@ -202,7 +202,7 @@ void handle_connection(int client_socket) {
         char path[1024];
         FILE *file = NULL;
 
-        if (-2 == server_certificate_path(&file, host, path, sizeof(path))) {
+        if (-2 == server_certificate_file(&file, host, path, sizeof(path))) {
             /* We've established a connection, tell the client. */
             fprintf(client_fd, "HTTP/1.0 200 Connection established\r\n");
             fprintf(client_fd, "\r\n");
@@ -218,7 +218,7 @@ void handle_connection(int client_socket) {
 
             goto out;
         }
-        /* server_certificate_path() may have opened the file, close it. */
+        /* server_certificate_file() may have opened the file, close it. */
         if (NULL != file) {
             fclose(file);
         }
index 1df9b511686b8e2f17447513ffe45e53c1f7c434..f546fd42e2cb9d2982cea39a0c0a6fd8b112b6a0 100644 (file)
@@ -114,7 +114,7 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) {
     gnutls_x509_crt_deinit(cert);
 
     /* Open stored server certificate file. */
-    if (0 != server_certificate_path(&file, hostname, path, sizeof(path))) {
+    if (0 != server_certificate_file(&file, hostname, path, sizeof(path))) {
         LOG(LOG_DEBUG, "server certificate:\n%s", server_cert);
         return -1;
     }
@@ -196,12 +196,12 @@ int proxy_certificate_path(const char *hostname, char *path, size_t size) {
                                 hostname, path, size);
 }
 
-int server_certificate_path(FILE **file, const char *hostname,
+int server_certificate_file(FILE **file, const char *hostname,
                             char *path, size_t size) {
     if (0 != get_certificate_path(STORED_SERVER_CERT_FORMAT,
                                   hostname, path, size)) {
         LOG_PERROR(LOG_ERROR,
-                   "server_certificate_path(): failed to get path");
+                   "server_certificate_file(): failed to get path");
         return -1;
     }
 
@@ -210,11 +210,11 @@ int server_certificate_path(FILE **file, const char *hostname,
     if (NULL == *file) {
         if (global_passthrough_unknown) {
             LOG(LOG_DEBUG,
-                "server_certificate_path(): failed to open '%s': %s",
+                "server_certificate_file(): failed to open '%s': %s",
                 path, strerror(errno));
         } else {
             LOG(LOG_WARNING,
-                "server_certificate_path(): failed to open '%s': %s",
+                "server_certificate_file(): failed to open '%s': %s",
                 path, strerror(errno));
         }
         /* Couldn't open the file, special case. */
index ebcd99337f882b9b1ea422158349ce94be26a782..49352425d47eac21ea9a1add6e5736b07c8f5e35 100644 (file)
@@ -21,7 +21,7 @@
 #define VERIFY_H
 
 int proxy_certificate_path(const char *hostname, char *path, size_t size);
-int server_certificate_path(FILE **file, const char *hostname,
+int server_certificate_file(FILE **file, const char *hostname,
                             char *path, size_t size);
 
 int verify_tls_connection(gnutls_session_t session, const char *hostname);