From d40a4e8af7ed599d34497f9246672f6850dc4478 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Wed, 13 Nov 2002 17:48:48 +0000 Subject: (relay_connection): Shutdown the client socket for writing once all the data has been sent. --- src/reqs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/reqs.c b/src/reqs.c index 7cc98bd..ebd788e 100644 --- a/src/reqs.c +++ b/src/reqs.c @@ -1,4 +1,4 @@ -/* $Id: reqs.c,v 1.84 2002-11-03 17:10:32 rjkaes Exp $ +/* $Id: reqs.c,v 1.85 2002-11-13 17:48:48 rjkaes Exp $ * * This is where all the work in tinyproxy is actually done. Incoming * connections have a new child created for them. The child then @@ -1103,6 +1103,7 @@ relay_connection(struct conn_s *connptr) if (write_buffer(connptr->client_fd, connptr->sbuffer) < 0) break; } + shutdown(connptr->client_fd, SHUT_WR); /* * Try to send any remaining data to the server if we can. -- cgit v1.2.3