diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-07-23 00:05:52 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-07-23 00:05:52 +0200 |
commit | babda9e9c702aee6e03e7537108383e32a7c17d0 (patch) | |
tree | 00ce2bf7e4ebbf7830d5749d7c144561ff69bce6 | |
parent | 0c85bd35d4ab3f0e991dc4c9c67b2ac579f062ab (diff) | |
download | libmicrohttpd-babda9e9c702aee6e03e7537108383e32a7c17d0.tar.gz libmicrohttpd-babda9e9c702aee6e03e7537108383e32a7c17d0.zip |
fix misc typos
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | doc/chapters/tlsauthentication.inc | 2 | ||||
-rw-r--r-- | src/lib/internal.h | 2 | ||||
-rw-r--r-- | src/lib/upgrade_process.c | 2 | ||||
-rw-r--r-- | src/lib/upgrade_process.h | 2 | ||||
-rw-r--r-- | src/microhttpd/connection.c | 2 | ||||
-rw-r--r-- | src/microhttpd/daemon.c | 2 | ||||
-rw-r--r-- | src/microhttpd/internal.h | 2 |
8 files changed, 8 insertions, 8 deletions
@@ -1111,7 +1111,7 @@ Fri Feb 5 20:43:11 CET 2016 | |||
1111 | 1111 | ||
1112 | Thu Feb 4 11:38:11 CET 2016 | 1112 | Thu Feb 4 11:38:11 CET 2016 |
1113 | Added some buffer overrun protection. | 1113 | Added some buffer overrun protection. |
1114 | Fixed handling of misformed URI with spaces. -EG | 1114 | Fixed handling of malformed URI with spaces. -EG |
1115 | 1115 | ||
1116 | Wed Feb 3 15:41:57 CET 2016 | 1116 | Wed Feb 3 15:41:57 CET 2016 |
1117 | Make signal-pipe non-blocking and drain it. -CG | 1117 | Make signal-pipe non-blocking and drain it. -CG |
diff --git a/doc/chapters/tlsauthentication.inc b/doc/chapters/tlsauthentication.inc index fdb3d920..ebde69a8 100644 --- a/doc/chapters/tlsauthentication.inc +++ b/doc/chapters/tlsauthentication.inc | |||
@@ -421,7 +421,7 @@ to this callback, as the GnuTLS API unfortunately does not permit this at this | |||
421 | point. | 421 | point. |
422 | 422 | ||
423 | The @code{hosts} list can be initialized by loading the private keys and X.509 | 423 | The @code{hosts} list can be initialized by loading the private keys and X.509 |
424 | certificats from disk as follows: | 424 | certificates from disk as follows: |
425 | 425 | ||
426 | @verbatim | 426 | @verbatim |
427 | static void | 427 | static void |
diff --git a/src/lib/internal.h b/src/lib/internal.h index c9971999..ebd59d02 100644 --- a/src/lib/internal.h +++ b/src/lib/internal.h | |||
@@ -831,7 +831,7 @@ struct UpgradeEpollHandle | |||
831 | * | 831 | * |
832 | * Similarly, for writing to TLS, this epoll() will be on the | 832 | * Similarly, for writing to TLS, this epoll() will be on the |
833 | * connection's `socket_fd`, and this will merely be the FD which | 833 | * connection's `socket_fd`, and this will merely be the FD which |
834 | * the applicatio would write to. Hence this struct must always be | 834 | * the application would write to. Hence this struct must always be |
835 | * interpreted based on which field in `struct | 835 | * interpreted based on which field in `struct |
836 | * MHD_UpgradeResponseHandle` it is (`app` or `mhd`). | 836 | * MHD_UpgradeResponseHandle` it is (`app` or `mhd`). |
837 | */ | 837 | */ |
diff --git a/src/lib/upgrade_process.c b/src/lib/upgrade_process.c index af71ca32..e158b146 100644 --- a/src/lib/upgrade_process.c +++ b/src/lib/upgrade_process.c | |||
@@ -28,7 +28,7 @@ | |||
28 | #if defined(HTTPS_SUPPORT) && defined(UPGRADE_SUPPORT) | 28 | #if defined(HTTPS_SUPPORT) && defined(UPGRADE_SUPPORT) |
29 | /** | 29 | /** |
30 | * Performs bi-directional forwarding on upgraded HTTPS connections | 30 | * Performs bi-directional forwarding on upgraded HTTPS connections |
31 | * based on the readyness state stored in the @a urh handle. | 31 | * based on the readiness state stored in the @a urh handle. |
32 | * @remark To be called only from thread that process | 32 | * @remark To be called only from thread that process |
33 | * connection's recv(), send() and response. | 33 | * connection's recv(), send() and response. |
34 | * | 34 | * |
diff --git a/src/lib/upgrade_process.h b/src/lib/upgrade_process.h index 8b0d4119..e3242013 100644 --- a/src/lib/upgrade_process.h +++ b/src/lib/upgrade_process.h | |||
@@ -28,7 +28,7 @@ | |||
28 | #if defined(HTTPS_SUPPORT) && defined(UPGRADE_SUPPORT) | 28 | #if defined(HTTPS_SUPPORT) && defined(UPGRADE_SUPPORT) |
29 | /** | 29 | /** |
30 | * Performs bi-directional forwarding on upgraded HTTPS connections | 30 | * Performs bi-directional forwarding on upgraded HTTPS connections |
31 | * based on the readyness state stored in the @a urh handle. | 31 | * based on the readiness state stored in the @a urh handle. |
32 | * @remark To be called only from thread that process | 32 | * @remark To be called only from thread that process |
33 | * connection's recv(), send() and response. | 33 | * connection's recv(), send() and response. |
34 | * | 34 | * |
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index 715b2d40..7a17c628 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c | |||
@@ -2076,7 +2076,7 @@ parse_initial_message_line (struct MHD_Connection *connection, | |||
2076 | { | 2076 | { |
2077 | size_t uri_len; | 2077 | size_t uri_len; |
2078 | curi = uri; | 2078 | curi = uri; |
2079 | /* Search from back to accept misformed URI with space */ | 2079 | /* Search from back to accept malformed URI with space */ |
2080 | http_version = line + line_len - 1; | 2080 | http_version = line + line_len - 1; |
2081 | /* Skip any trailing spaces */ | 2081 | /* Skip any trailing spaces */ |
2082 | while ( (' ' == http_version[0]) && | 2082 | while ( (' ' == http_version[0]) && |
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c index 473a5fb4..ce19d79a 100644 --- a/src/microhttpd/daemon.c +++ b/src/microhttpd/daemon.c | |||
@@ -1326,7 +1326,7 @@ cleanup_upgraded_connection (struct MHD_Connection *connection) | |||
1326 | #if defined(HTTPS_SUPPORT) && defined(UPGRADE_SUPPORT) | 1326 | #if defined(HTTPS_SUPPORT) && defined(UPGRADE_SUPPORT) |
1327 | /** | 1327 | /** |
1328 | * Performs bi-directional forwarding on upgraded HTTPS connections | 1328 | * Performs bi-directional forwarding on upgraded HTTPS connections |
1329 | * based on the readyness state stored in the @a urh handle. | 1329 | * based on the readiness state stored in the @a urh handle. |
1330 | * @remark To be called only from thread that processes | 1330 | * @remark To be called only from thread that processes |
1331 | * connection's recv(), send() and response. | 1331 | * connection's recv(), send() and response. |
1332 | * | 1332 | * |
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h index 39a7825d..3fdc7e5c 100644 --- a/src/microhttpd/internal.h +++ b/src/microhttpd/internal.h | |||
@@ -1055,7 +1055,7 @@ struct UpgradeEpollHandle | |||
1055 | * | 1055 | * |
1056 | * Similarly, for writing to TLS, this epoll() will be on the | 1056 | * Similarly, for writing to TLS, this epoll() will be on the |
1057 | * connection's `socket_fd`, and this will merely be the FD which | 1057 | * connection's `socket_fd`, and this will merely be the FD which |
1058 | * the applicatio would write to. Hence this struct must always be | 1058 | * the application would write to. Hence this struct must always be |
1059 | * interpreted based on which field in `struct | 1059 | * interpreted based on which field in `struct |
1060 | * MHD_UpgradeResponseHandle` it is (`app` or `mhd`). | 1060 | * MHD_UpgradeResponseHandle` it is (`app` or `mhd`). |
1061 | */ | 1061 | */ |