comparison src/os/unix/ngx_freebsd_sendfile_chain.c @ 4133:59b99f217c6d

Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Sep 2011 14:48:29 +0000
parents 10bfdd8d5eb9
children 1003326eccc5
comparison
equal deleted inserted replaced
4132:cdc22824e22a 4133:59b99f217c6d
9 #include <ngx_event.h> 9 #include <ngx_event.h>
10 10
11 11
12 /* 12 /*
13 * Although FreeBSD sendfile() allows to pass a header and a trailer, 13 * Although FreeBSD sendfile() allows to pass a header and a trailer,
14 * it can not send a header with a part of the file in one packet until 14 * it cannot send a header with a part of the file in one packet until
15 * FreeBSD 5.3. Besides, over the fast ethernet connection sendfile() 15 * FreeBSD 5.3. Besides, over the fast ethernet connection sendfile()
16 * may send the partially filled packets, i.e. the 8 file pages may be sent 16 * may send the partially filled packets, i.e. the 8 file pages may be sent
17 * as the 11 full 1460-bytes packets, then one incomplete 324-bytes packet, 17 * as the 11 full 1460-bytes packets, then one incomplete 324-bytes packet,
18 * and then again the 11 full 1460-bytes packets. 18 * and then again the 11 full 1460-bytes packets.
19 * 19 *