From: Stephan Bosch Date: Tue, 29 Nov 2016 16:22:41 +0000 (+0100) Subject: lib-http: client: Fixed whitespace in the top comment explaining the structure of... X-Git-Tag: 2.3.0.rc1~273 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d67f004ebf944adca3ba09ed547febfa75442476;p=thirdparty%2Fdovecot%2Fcore.git lib-http: client: Fixed whitespace in the top comment explaining the structure of the HTTP client. --- diff --git a/src/lib-http/http-client.c b/src/lib-http/http-client.c index 5a89a174cc..0aeea72e49 100644 --- a/src/lib-http/http-client.c +++ b/src/lib-http/http-client.c @@ -21,16 +21,16 @@ /* Structure: - http-client: + http-client: - Acts much like a browser; it is not dedicated to a single host. Client can + Acts much like a browser; it is not dedicated to a single host. Client can accept requests to different hosts, which can be served at different IPs. Redirects are handled in the background by making a new connection. Connections to new hosts are created once needed for servicing a request. - http-client-request: + http-client-request: - The request semantics are similar to imapc commands. Create a request, + The request semantics are similar to imapc commands. Create a request, optionally modify some aspects of it and finally submit it. Once finished, a callback is called with the returned response.