From: wessels <> Date: Mon, 18 Jun 2001 22:05:47 +0000 (+0000) Subject: remove periods from section headings X-Git-Tag: SQUID_3_0_PRE1~1491 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ee7ed77910eedad5ff8e587e59ac7ee0edb28be3;p=thirdparty%2Fsquid.git remove periods from section headings --- diff --git a/doc/Programming-Guide/prog-guide.sgml b/doc/Programming-Guide/prog-guide.sgml index 060e03cae8..a2be275a84 100644 --- a/doc/Programming-Guide/prog-guide.sgml +++ b/doc/Programming-Guide/prog-guide.sgml @@ -2,7 +2,7 @@
Squid Programmers Guide Duane Wessels, Squid Developers -$Id: prog-guide.sgml,v 1.41 2001/06/18 16:02:55 wessels Exp $ +$Id: prog-guide.sgml,v 1.42 2001/06/18 16:05:47 wessels Exp $ Squid is a WWW Cache application developed by the National Laboratory @@ -2047,7 +2047,7 @@ coupling between the storage layer and the replacement policy.

The data types are presented in C for the simple reason that squid is currently written exclusively in C. - Function typedefs. + Function typedefs

Each function related to the general case of HTTP authentication has a matching typedef. There are some additional function types used to @@ -2378,7 +2378,7 @@ struct _authscheme_entry { any backend existence it needs. Remember any blocking code must go in AUTHSSTART function(s) and _MUST_ use callbacks. -How to ``hook in'' new functions to the API. +How to ``hook in'' new functions to the API

Start of by figuring the code path that will result in the function being called, and what data it will need. Then create a typedef for the @@ -2588,7 +2588,7 @@ struct _authscheme_entry { variable. Thus, dynamic allocation of headers is not needed. -Header Manipulation. +Header Manipulation

The mostly common operations on HTTP headers are testing @@ -2680,7 +2680,7 @@ struct _authscheme_entry { I/O and Headers. +I/O and Headers

To store a header in a file or socket, pack it using @@ -2692,7 +2692,7 @@ struct _authscheme_entry { HTTP protocol. -Adding new header-field ids. +Adding new header-field ids

Adding new ids is simple. First add new HDR_ entry to the @@ -2740,7 +2740,7 @@ struct _authscheme_entry { HttpHeaderMask type in A Word on Efficiency. +A Word on Efficiency