當前位置: 首頁>>代碼示例>>Java>>正文


Java HttpHeaders.remove方法代碼示例

本文整理匯總了Java中io.netty.handler.codec.http.HttpHeaders.remove方法的典型用法代碼示例。如果您正苦於以下問題:Java HttpHeaders.remove方法的具體用法?Java HttpHeaders.remove怎麽用?Java HttpHeaders.remove使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在io.netty.handler.codec.http.HttpHeaders的用法示例。


在下文中一共展示了HttpHeaders.remove方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: propagatedHeaders

import io.netty.handler.codec.http.HttpHeaders; //導入方法依賴的package包/類
private HttpHeaders propagatedHeaders(Request request, Realm realm, boolean keepBody) {

        HttpHeaders headers = request.getHeaders()//
                .remove(HttpHeaders.Names.HOST)//
                .remove(HttpHeaders.Names.CONTENT_LENGTH);

        if (!keepBody) {
            headers.remove(HttpHeaders.Names.CONTENT_TYPE);
        }

        if (realm != null && realm.getScheme() == AuthScheme.NTLM) {
            headers.remove(AUTHORIZATION)//
                    .remove(PROXY_AUTHORIZATION);
        }
        return headers;
    }
 
開發者ID:amaralDaniel,項目名稱:megaphone,代碼行數:17,代碼來源:Redirect30xInterceptor.java

示例2: switchProxyConnectionHeader

import io.netty.handler.codec.http.HttpHeaders; //導入方法依賴的package包/類
/**
 * Switch the de-facto standard "Proxy-Connection" header to "Connection"
 * when we pass it along to the remote host. This is largely undocumented
 * but seems to be what most browsers and servers expect.
 * 
 * @param headers
 *            The headers to modify
 */
private void switchProxyConnectionHeader(HttpHeaders headers) {
    String proxyConnectionKey = "Proxy-Connection";
    if (headers.contains(proxyConnectionKey)) {
        String header = headers.get(proxyConnectionKey);
        headers.remove(proxyConnectionKey);
        headers.set(HttpHeaders.Names.CONNECTION, header);
    }
}
 
開發者ID:wxyzZ,項目名稱:little_mitm,代碼行數:17,代碼來源:ClientToProxyConnection.java

示例3: stripConnectionTokens

import io.netty.handler.codec.http.HttpHeaders; //導入方法依賴的package包/類
/**
 * RFC2616 Section 14.10
 * 
 * HTTP/1.1 proxies MUST parse the Connection header field before a message
 * is forwarded and, for each connection-token in this field, remove any
 * header field(s) from the message with the same name as the
 * connection-token.
 * 
 * @param headers
 *            The headers to modify
 */
private void stripConnectionTokens(HttpHeaders headers) {
    if (headers.contains(HttpHeaders.Names.CONNECTION)) {
        for (String headerValue : headers.getAll(HttpHeaders.Names.CONNECTION)) {
            for (String connectionToken : ProxyUtils.splitCommaSeparatedHeaderValues(headerValue)) {
                // do not strip out the Transfer-Encoding header if it is specified in the Connection header, since LittleProxy does not
                // normally modify the Transfer-Encoding of the message.
                if (!LOWERCASE_TRANSFER_ENCODING_HEADER.equals(connectionToken.toLowerCase(Locale.US))) {
                    headers.remove(connectionToken);
                }
            }
        }
    }
}
 
開發者ID:wxyzZ,項目名稱:little_mitm,代碼行數:25,代碼來源:ClientToProxyConnection.java

示例4: stripHopByHopHeaders

import io.netty.handler.codec.http.HttpHeaders; //導入方法依賴的package包/類
/**
 * Removes all headers that should not be forwarded. See RFC 2616 13.5.1
 * End-to-end and Hop-by-hop Headers.
 * 
 * @param headers
 *            The headers to modify
 */
private void stripHopByHopHeaders(HttpHeaders headers) {
    Set<String> headerNames = headers.names();
    for (String headerName : headerNames) {
        if (ProxyUtils.shouldRemoveHopByHopHeader(headerName)) {
            headers.remove(headerName);
        }
    }
}
 
開發者ID:wxyzZ,項目名稱:little_mitm,代碼行數:16,代碼來源:ClientToProxyConnection.java


注:本文中的io.netty.handler.codec.http.HttpHeaders.remove方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。