4.1.剖析頭部過濾函數
頭部過濾函數由下面三個基礎部分組成:
1. 決定是否操縱這個回復
2. 操縱這個回復
3. 調用下一個過濾函數
舉個例子,這裡有一個簡單版本的「沒有修改過的」頭部過濾函數。 如果用戶端的If-Modfied-Since頭部與回復的Last-Modified頭部匹配,就把狀態設為 304 Not Modified。 頭部過濾函數只有一個參數ngx_HTTP_request_t,但它可以讓我們訪問到用戶端的頭部和不久要發送的回復頭部。
static
ngx_int_t ngx_HTTP_not_modified_header_filter(ngx_HTTP_request_t *r) {
time_t if_modified_since;
if_modified_since = ngx_HTTP_parse_time( r->headers_in.if_modified_since->value.data, r->headers_in.if_ modified_since->value.len);
/* step 1: decide whether to operate */
if (if_modified_since != NGX_ERROR && if_modified_since == r->headers_out.last_modified_time) {
/* step 2: operate on the header */
r->headers_out.status = NGX_HTTP_NOT_MODIFIED;
r->headers_out.content_type.len = 0;
ngx_HTTP_clear_content_length(r);
ngx_HTTP_clear_accept_ranges(r);
}
/* step 3: call the next filter */
return ngx_HTTP_next_header_filter(r);
}
headers_out結構體與處理模組中的一樣( HTTP/ngx_HTTP_request.h ),也可以隨便改。