Jun Ouyang
Jun Ouyang
let's wait for https://github.com/nix-rust/nix/pull/2347 released!
> when is the plan for this to be completed? I'm eagerly waiting for it to use it in my encrypted filesystem app I will push forward in these days,...
Sorry for my lateness. It will finish in these days.
Recreate it as a new PR due to rebase hell.
Openresty gives a lua API https://github.com/openresty/stream-lua-nginx-module/blob/master/README.md?plain=1#L82 which can get raw downstream in lua coroutine, So maybe it's a better way to meet your need. @toremick @MageekChiu
I have read njs doc. Yeah, it seems openresty can not inject some content in proxy, But openresty `ngx.req.socket` can get raw downstream socket in lua coroutine, this means you...
You need to self-parse your traffic data by `ngx.req.socket`, Or match your protocol in the preread buffer. It depends on your traffic data pattern.
No, I mean which have two approaches 1. using `ngx.req.socket(raw)` to hook the whole proxy_pass path, that means you can not using proxy_pass 2. using socket peek API in the...
@muravjov Thanks for your issues, I will check these issues and try to resolve them later.
@QuantumDisposition Hello, sorry for the slow response, I have fixed this https://github.com/attenuation/ngx_stream_socks_module/commit/bf6c646b22c9513d8d42f1cd17826fd33853198b, please try it.