Soner Tari

Results 220 comments of Soner Tari

I have tested your changes on an arm64 macOS 15.4.1, and have committed them to the develop branch, but haven't pushed them yet. I have also suppressed the deprecation warnings...

That's correct, TCP and SSL connection is established by libevent underneath. So you don't have such control over those details. You can only configure certain SSL parameters, for example using...

It's not just HTTP, you can use SSLproxy for other protocols too, such as plain TCP or SSL.

> I have a few questions regarding the performance and integration of SSLproxy: Performance and Throughput: > > * Is SSLproxy suitable for handling industry-level traffic loads? > * Is...

I think this is related to "No Global CA loaded." My current theory is that if no global ca crt/key specified, for some reason we don't have a ca crt/key...

This is a bug I can reproduce here myself too. Thanks for reporting. I'm working on a fix, please use a global crt/key pair for now. Btw, the port related...

I have just pushed a fix to the develop branch. It seems to work. Can you test it please?

I am not sure if I understand your description correctly, but I've tried the following: First: ``` SrcIp 1.1.1.1 DstIp 2.2.2.2 DstPort 443 ``` And second: ``` SrcIp 1.1.1.1 DstIp...

You can try the Passthrough option (the -P option), [globally](https://github.com/sonertari/SSLproxy/blob/9879c7ba498efa44564a6d090d47f1aacea3ca46/src/sslproxy.conf#L60), per [proxyspec](https://github.com/sonertari/SSLproxy#proxy-specifications), or per [filter rule](https://github.com/sonertari/SSLproxy?tab=readme-ov-file#filtering-rules). But it may or may not cover all the error conditions you want.

[On certain ssl errors, the passthrough mode passes those connections through](https://github.com/sonertari/SSLproxy/blob/9879c7ba498efa44564a6d090d47f1aacea3ca46/src/protossl.c#L1561), which can be considered dynamic. But sslproxy does not have the config reload that you describe. And [here](https://github.com/sonertari/SSLproxy/blob/9879c7ba498efa44564a6d090d47f1aacea3ca46/src/protossl.c#L1713) as...