diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-04-22 13:09:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-04-22 13:09:00 +0000 |
commit | 1d3f76df714556ce07f70470947fe36dd9fc733e (patch) | |
tree | 8af2217c440c6ec864782801976e8453e684eed7 /tests/memanalyze.pl | |
parent | 33cb93ad0bf93879b5aaff76bef2c9a69b8ab985 (diff) | |
download | curl-1d3f76df714556ce07f70470947fe36dd9fc733e.tar.gz |
If only a partial file was transfered, we consider that a fatal problem so
we won't try to QUIT the control connection and risk "hanging" waiting for
a response. Test case 161 verifies this. The quit-sending function was
also made static.
Diffstat (limited to 'tests/memanalyze.pl')
-rwxr-xr-x | tests/memanalyze.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/memanalyze.pl b/tests/memanalyze.pl index b15e43d78..eaa8b5fe9 100755 --- a/tests/memanalyze.pl +++ b/tests/memanalyze.pl @@ -258,6 +258,11 @@ while(<FILE>) { } } } + # GETNAME url.c:1901 getnameinfo() + elsif($_ =~ /^GETNAME ([^ ]*):(\d*) (.*)/) { + # not much to do + } + # ADDR url.c:1282 getaddrinfo() = 0x5ddd elsif($_ =~ /^ADDR ([^ ]*):(\d*) (.*)/) { # generic match for the filename+linenumber |