Adam Schultz

Results 9 comments of Adam Schultz

It appears this is the same as https://github.com/oznu/docker-cloudflare-ddns/issues/92 just for IPv6

Slightly easier change that doesn't involve hacking standard headers: https://github.com/traviscross/mtr/issues/465#issuecomment-1732383935

In case it helps, I've resolved both the pipe and ICMP6 build issues for myself. Not sure if it is clean enough to upstream: https://github.com/traviscross/mtr/issues/465#issuecomment-1732383935

The named pipe issue is odd. In my environment, it is caused by ERROR_NO_DATA which should only occur if the pipe is configured as non blocking. I added a check...

Some googling of w32 APIs suggest the methodology used for cygwin is improper to start. The probe_cygwin code is using anonymous pipes which don't seem to support the OVERLAPPED methods:...

The pipes are being used as queues between threads and are a completely unnecessary construct. A simple mutex protected linked list and a pthread_cond_t object to wake the reader (or...

Found the problem. I haven't traced the reason, however, BEV_EVENT_CONNECTED fires twice for srvdst when autossl is used. This causes prototcp_bev_eventcb_connected_srvdst to be called twice and subsequently prototcp_setup_dst to be...

My primary goal is to create a version of sslproxy that can process connections forwarded via a load balancer. The general idea would be to use haproxy in transparent intercept...

@adeleke01042021 were you able to revive the patch from SSLsplit?