diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-06-08 18:06:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-06-08 18:06:30 -0700 |
commit | b37fd14beb39b9f545bd72e42e1bdbb00bad4b3d (patch) | |
tree | 73b0516cbdf8593e0fb045d56809db3285275d05 /t/helper | |
parent | Merge branch 'bc/filter-process' (diff) | |
parent | stateless-connect: send response end packet (diff) | |
download | tgif-b37fd14beb39b9f545bd72e42e1bdbb00bad4b3d.tar.xz |
Merge branch 'dl/remote-curl-deadlock-fix'
On-the-wire protocol v2 easily falls into a deadlock between the
remote-curl helper and the fetch-pack process when the server side
prematurely throws an error and disconnects. The communication has
been updated to make it more robust.
* dl/remote-curl-deadlock-fix:
stateless-connect: send response end packet
pkt-line: define PACKET_READ_RESPONSE_END
remote-curl: error on incomplete packet
pkt-line: extern packet_length()
transport: extract common fetch_pack() call
remote-curl: remove label indentation
remote-curl: fix typo
Diffstat (limited to 't/helper')
-rw-r--r-- | t/helper/test-pkt-line.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/helper/test-pkt-line.c b/t/helper/test-pkt-line.c index 12ca698e17..69152958e5 100644 --- a/t/helper/test-pkt-line.c +++ b/t/helper/test-pkt-line.c @@ -46,6 +46,9 @@ static void unpack(void) case PACKET_READ_DELIM: printf("0001\n"); break; + case PACKET_READ_RESPONSE_END: + printf("0002\n"); + break; } } } @@ -75,6 +78,7 @@ static void unpack_sideband(void) case PACKET_READ_FLUSH: return; case PACKET_READ_DELIM: + case PACKET_READ_RESPONSE_END: break; } } |