Levi

Results 427 comments of Levi

实现这个最基础的拦截器`HttpProxyIntercept`里的这个方法就行了: ``` public void afterResponse(Channel clientChannel, Channel proxyChannel, HttpContent httpContent, HttpProxyInterceptPipeline pipeline) ``` --- Just implement this method in the most basic interceptor `HttpProxyIntercept`: ``` public void afterResponse(Channel clientChannel, Channel...

嗯,就是这个意思,然后细节方面你再调下应该就行了 --- Well, that’s what it means, and then you should adjust the details

你要不先试试电脑上跑代理,看看行不行,排除下安卓底层库的问题

突然想起来了,你可能需要自己生成一个根证书: ![image](https://github.com/monkeyWie/proxyee/assets/13160176/1e5297e7-0c1b-4f1a-9a1f-87d858b7ef71)

I know what you mean, but unfortunately proxyee not support transparent mode currently, it only follow standard HTTP proxy.

Transparent mode has no handshake step, so I think the packet should be entry [here](https://github.com/monkeyWie/proxyee/blob/cddd02ad0d5a00fb152a8839f7356c1b17d62ff4/src/main/java/com/github/monkeywie/proxyee/handler/HttpProxyServerHandler.java#L201) directly, you can add a transparent flag on `HttpProxyServerConfig`, if it set true then skip...