剖析Nginx的過濾模組功能

來源:互聯網
上載者:User
關鍵字 nginx 過濾模組

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 ),也可以隨便改。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.