Fix typo.
[dragonfly.git] / share / man / man9 / accf_http.9
1 .\"
2 .\" Copyright (c) 2000 Alfred Perlstein
3 .\"
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
16 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD: src/share/man/man9/accf_http.9,v 1.1.2.6 2002/07/02 01:03:59 brian Exp $
27 .\" $DragonFly: src/share/man/man9/accf_http.9,v 1.2 2003/06/17 04:37:01 dillon Exp $
28 .\" "
29 .Dd November 15, 2000
30 .Os
31 .Dt ACCF_HTTP 9
32 .Sh NAME
33 .Nm accf_http
34 .Nd "buffer incoming connections until a certain complete HTTP requests arrive"
35 .Sh SYNOPSIS
36 .Nm options INET
37 .Nm options ACCEPT_FILTER_HTTP
38 .Nm kldload accf_http
39 .Sh DESCRIPTION
40 This is a filter to be placed on a socket that will be using
41 .Fn accept
42 to receive incoming HTTP connections.
43 .Pp
44 It prevents the application from receiving the connected descriptor via
45 .Fn accept
46 until either a full HTTP/1.0 or HTTP/1.1 HEAD or GET request has
47 been buffered by the kernel.
48 .Pp
49 If something other than a HTTP/1.0 or
50 HTTP/1.1 HEAD or GET request is received the kernel will
51 allow the application to receive the connection descriptor
52 via
53 .Fn accept .
54 .Pp
55 The utility of
56 .Xr accf_http 9
57 is such that a server will not have to context switch several times
58 before performing the initial parsing of the request.
59 This effectively reduces the amount of required CPU utilization
60 to handle incoming requests by keeping active
61 processes in preforking servers such as Apache low
62 and reducing the size of the filedescriptor set that needs
63 to be managed by interfaces such as
64 .Fn select ,
65 .Fn poll
66 or
67 .Fn kevent
68 based servers.
69 .Pp
70 The
71 .Xr accf_http 9
72 kernel option is also a module that can be enabled at runtime via
73 .Xr kldload 8
74 if the INET option has been compiled into the kernel.
75 .Sh EXAMPLE
76 Assuming ACCEPT_FILTER_HTTP has been included in the kernel config
77 file or the module
78 .Xr accf_http 9
79 has been loaded, this will enable the http accept filter
80 on the socket
81 .Fa sok .
82 .Bd -literal -offset 0i
83         struct accept_filter_arg afa;
84
85         bzero(&afa, sizeof(afa));
86         strcpy(afa.af_name, "httpready");
87         setsockopt(sok, SOL_SOCKET, SO_ACCEPTFILTER, &afa, sizeof(afa));
88 .Ed
89 .Sh SEE ALSO
90 .Xr setsockopt 2 ,
91 .Xr accept_filter 9
92 .Sh HISTORY
93 The accept filter mechanism and the
94 accf_http filter were introduced in
95 .Fx 4.0 .
96 .Sh AUTHORS
97 This manual page and the filter were written by
98 .An Alfred Perlstein .