]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
src/*.c: Minor documentation updates.
authorSimon Ruderich <simon@ruderich.org>
Tue, 6 Sep 2011 14:31:11 +0000 (16:31 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 6 Sep 2011 14:31:11 +0000 (16:31 +0200)
src/connection.c
src/log.c
src/tlsproxy.c

index ed8a59411892bb7f89b12642c9482b0f5bb30850..bfdac1c6db59df105ae2ac9fdc659be004da9e3a 100644 (file)
 #include <errno.h>
 
 
-/* Maximum line of a HTTP request line. Longer request lines are aborted with
- * an error. The standard doesn't specify a maximum line length but this
- * should be a good limit to make processing simpler. */
+/* Maximum length of a HTTP request line. Longer request lines are aborted
+ * with an error. The standard doesn't specify a maximum line length but this
+ * should be a good limit to make processing simpler. As HTTPS is used this
+ * doesn't limit long GET requests. */
 #define MAX_REQUEST_LINE 4096
 
 /* Format string used to send HTTP/1.0 error responses to the client.
@@ -216,7 +217,7 @@ void handle_connection(int client_socket) {
 
             goto out;
         }
-        /* server_certificate_path() may open the file, close it. */
+        /* server_certificate_path() may have opened the file, close it. */
         if (NULL != file) {
             fclose(file);
         }
@@ -257,7 +258,7 @@ void handle_connection(int client_socket) {
 
     /* Initialize TLS server credentials to talk to the client. */
     result = initialize_tls_session_client(client_socket,
-                                           /* use special host if the server
+                                           /* use special host if the server
                                             * certificate was invalid */
                                            (validation_failed) ? "invalid"
                                                                : host,
index 9cd3da49874ca28be965df0ebec9c5cd6a790027..23b90eecc57559350a066f22568dd2b93bf8326b 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -22,7 +22,7 @@
 
 /* va_*() */
 #include <stdarg.h>
-/* pthread_*() */
+/* pthread_self() */
 #include <pthread.h>
 
 
index 3fa03e3b4065f8b67fd8956d0367a031228bca4e..b79e05daec86135f8ed470b2f8bee9bf881d1b37 100644 (file)
@@ -109,11 +109,11 @@ int main(int argc, char **argv) {
         return EXIT_FAILURE;
     }
 
-    /* Setup our SIGINT signal handler which allows a "normal" termination of
-     * the server in DEBUG mode. */
     sigemptyset(&action.sa_mask);
     action.sa_flags   = 0;
 #ifdef DEBUG
+    /* Setup our SIGINT signal handler which allows a "normal" termination of
+     * the server in DEBUG mode. */
     action.sa_handler = sigint_handler;
     sigaction(SIGINT, &action, NULL);
 #endif