gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r14366 - in libmicrohttpd: doc src/daemon


From: gnunet
Subject: [GNUnet-SVN] r14366 - in libmicrohttpd: doc src/daemon
Date: Mon, 7 Feb 2011 13:56:20 +0100

Author: grothoff
Date: 2011-02-07 13:56:20 +0100 (Mon, 07 Feb 2011)
New Revision: 14366

Modified:
   libmicrohttpd/doc/microhttpd.texi
   libmicrohttpd/src/daemon/daemon_test.c
Log:
Patch f?\195?\188r libmicrohttpd-Doku
From: 
Michael Wiegand <address@hidden>  (Greenbone Networks GmbH)
  To: 
address@hidden
  Date: 
Today 12:39:11 pm
  Attachments: 
 microhttpd.texi-typo-fixes.patch
   
Hallo Christian,

ich habe ein paar Typos in der Doku von libmicrohttpd gefunden, siehe 
angeh?\195?\164ngter Patch.

Oder nimmst du Patches lieber ?\195?\188ber die Liste? Habe mich jetzt auch 
endlich 
angemeldet. :)

Gr?\195?\188?\195?\159e aus Osnabr?\195?\188ck

Michael


Modified: libmicrohttpd/doc/microhttpd.texi
===================================================================
--- libmicrohttpd/doc/microhttpd.texi   2011-02-06 23:27:18 UTC (rev 14365)
+++ libmicrohttpd/doc/microhttpd.texi   2011-02-07 12:56:20 UTC (rev 14366)
@@ -344,7 +344,7 @@
 
 @item MHD_OPTION_CONNECTION_LIMIT
 @cindex connection, limiting number of connections
-Maximum number of concurrenct connections to accept (followed by an
+Maximum number of concurrent connections to accept (followed by an
 @code{unsigned int}).  The default is @code{FD_SETSIZE - 4} (the
 maximum number of file descriptors supported by @code{select} minus
 four for @code{stdin}, @code{stdout}, @code{stderr} and the server
@@ -406,7 +406,7 @@
 @code{struct sockaddr *}.  If @code{MHD_USE_IPv6} is specified, 
 the @code{struct sockaddr*} should point to a @code{struct sockaddr_in6}, 
 otherwise to a @code{struct sockaddr_in}.  If this option is not specified,
-the daemon will listen to incomming connections from anywhere.
+the daemon will listen to incoming connections from anywhere.
 
 @item MHD_OPTION_URI_LOG_CALLBACK
 @cindex debugging
@@ -456,7 +456,7 @@
 This option should be followed by an "const char*" argument.
 The presence of this option activates the request of certificate
 to the client. The request to the client is marked optional, and
-it is the responsability of the server to check the presence
+it is the responsibility of the server to check the presence
 of the certificate if needed.
 Note that most browsers will only present a client certificate
 only if they have one matching the specified CA, not sending
@@ -474,7 +474,7 @@
 @cindex TLS
 @cindex cipher
 SSL/TLS protocol version and ciphers.
-This option must be followwed by an "const char *" argument
+This option must be followed by an "const char *" argument
 specifying the SSL/TLS protocol versions and ciphers that
 are acceptable for the application.  The string is passed
 unchanged to gnutls_priority_init.  If this option is not
@@ -489,7 +489,7 @@
 type "size_t" which specifies the size of the buffer pointed to by the
 second argument in bytes.  Note that the application must ensure that
 the buffer of the second argument remains allocated and unmodified
-while the deamon is running.  For security, you SHOULD provide a fresh
+while the daemon is running.  For security, you SHOULD provide a fresh
 random nonce when using MHD with Digest Authentication.  
 
 @item MHD_OPTION_NONCE_NC_SIZE
@@ -741,7 +741,7 @@
 
 @deftp {Enumeration} MHD_DaemonInfoType
 Values of this enum are used to specify what
-information about a deamon is desired.
+information about a daemon is desired.
 @table @code
 @item MHD_DAEMON_INFO_KEY_SIZE
 Request information about the key size for a particular cipher
@@ -1043,7 +1043,7 @@
 
 @table @var
 @item cb 
-function to call if MHD encounteres a fatal internal error.  If no handler was 
set explicitly, MHD will call @code{abort}.
+function to call if MHD encounters a fatal internal error.  If no handler was 
set explicitly, MHD will call @code{abort}.
 
 @item cls
 closure argument for cb; the other arguments are the name of the source file, 
line number and a string describing the nature of the fatal error (which can be 
NULL)
@@ -1224,7 +1224,7 @@
 
 Example: we allocate a new @code{MHD_Response} structure for each
 response @strong{kind}, we use it every time we have to give that
-responce and we finally destroy it only when the daemon shuts down.
+response and we finally destroy it only when the daemon shuts down.
 
 @menu
 * microhttpd-response enqueue:: Enqueuing a response.
@@ -1269,7 +1269,7 @@
 Destroy a response object and associated resources (decrement the
 reference counter).  Note that @mhd{} may keep some of the resources
 around if the response is still in the queue for some clients, so the
-memory may not necessarily be freed immediatley.
+memory may not necessarily be freed immediately.
 @end deftypefun
 
 
@@ -1547,7 +1547,7 @@
 between the client and the server, so this method must only be used
 for non-sensitive content or when the session is protected with https.
 When using basic authentication @mhd{} will have access to the clear
-password, possibily allowing to create a chained authentication
+password, possibly allowing to create a chained authentication
 toward an external authentication server.
 
 Digest authentication uses a one-way authentication method based
@@ -1717,7 +1717,7 @@
 
 
 @noindent
address@hidden provides the post procesor API to make it easier for 
applications to
address@hidden provides the post processor API to make it easier for 
applications to
 parse the data of a client's @code{POST} request: the
 @code{MHD_AccessHandlerCallback} will be invoked multiple times to
 process data as it arrives; at each invocation a new chunk of data must
@@ -1732,7 +1732,7 @@
 this is a new request.  
 
 One method to detect that a new connection was established is
-to set @code{*con_cls} to anunused integer:
+to set @code{*con_cls} to an unused integer:
 
 @example
 int

Modified: libmicrohttpd/src/daemon/daemon_test.c
===================================================================
--- libmicrohttpd/src/daemon/daemon_test.c      2011-02-06 23:27:18 UTC (rev 
14365)
+++ libmicrohttpd/src/daemon/daemon_test.c      2011-02-07 12:56:20 UTC (rev 
14366)
@@ -19,7 +19,7 @@
 */
 
 /**
- * @file daemontest.c
+ * @file daemon_test.c
  * @brief  Testcase for libmicrohttpd starts and stops
  * @author Christian Grothoff
  */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]