edmcln
edmcln
I tried this and there was no leaks. D:\curl-8.4.0\winbuild>nmake /f Makefile.vc mode=dll VC=14 ENABLE_UNICODE=yes DEBUG=yes ``` // curltest.cpp : This file contains the 'main' function. Program execution begins and ends...
I can't reproduce your results. ``` root@debian:~# curl -Lv 192.168.x.x --ntlm -u xxx:xxx * Trying 192.168.x.x:80... * Connected to 192.168.x.x (192.168.x.x) port 80 (#0) * Server auth using NTLM with...
It works fine on my end. I built the latest curl from scratch on Fedora 40 and here is the result: ``` [root@fedora ~]# curl -Lv 192.168.x.x --ntlm -u xxx:xxx...
A simple approach is to verify whether the thread is impersonating. If it is, we don't invoke the `GetAddrInfoExW` function. ``` C BOOL WINAPI IsImpersonating() { HANDLE hToken = NULL;...
Hi all, today I spent some time on this issue, and wrote a simple Windows service that reproduces it. I used two different methods to reproduce it, using `LogonUser` &...
I did a few tests with the official version of the curl. The results are as follows: First Method (Using **--upload-file**): ``` PS C:\Users\???\Desktop\curl> Measure-Command { .\curl.exe -T C:\test\GRMSDK_EN_DVD.iso -u...
I'm not sure what's wrong with the new build (8.6.0), but the write speed is ~3.x times slower than the 8.5.0 or 8.4.0. I monitored the ReadFile and WriteFile API...
Try the same URL in Chrome/Firefox and ensure the page is served via the QUIC protocol. Chances are, your ISP or Network Firewall is blocking the QUIC traffic to that...
> Firstly, my firewall is handed by Avast antivirus I don't care about your personal AV firewall, I was referring to hardware firewalls. > Secondly, why would the ISP would...
As a rule of thumb, if you are a residential internet user, you don't have to worry too much about firewalls. But having said that, without more detailed information we...