Levi

Results 336 comments of Levi

@T0DDY This my mistake, you can also add a `HttpProxyIntercept` to interrupt the request, like this: ```java pipeline.addLast(new HttpProxyIntercept(){ @Override public void beforeRequest(Channel clientChannel, HttpRequest httpRequest, HttpProxyInterceptPipeline pipeline) throws Exception...

I tested ok, that pipeline like this: ``` pipeline.addLast(FullRequestIntercept) pipeline.addLast(HttpProxyIntercept) pipeline.addLast(FullResponseIntercept) ``` so can you try again following the above? for example: ``` pipeline.addLast(new FullRequestIntercept() { @Override public boolean match(HttpRequest...

@T0DDY Could you provide a simple sample code?

你是说代理服务器的身份验证支持吗

流量统计要做的话,得计算出请求和响应的报文大小,用一个拦截器应该可以实现

用户名和密码的我有空的时候加下吧,不麻烦

代理服务器验证是有标准支持的,需要实现下这个标准

可以提交pr我看下

直接用http代理就可以了