mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Automatically terminate replication connections that are idle for more
than replication_timeout (a new GUC) milliseconds. The TCP timeout is often too long, you want the master to notice a dead connection much sooner. People complained about that in 9.0 too, but with synchronous replication it's even more important to notice dead connections promptly. Fujii Masao and Heikki Linnakangas
This commit is contained in:
@ -14,7 +14,8 @@
|
||||
#include "postgres.h"
|
||||
|
||||
/*
|
||||
* Indicate if pgwin32_recv() should operate in non-blocking mode.
|
||||
* Indicate if pgwin32_recv() and pgwin32_send() should operate
|
||||
* in non-blocking mode.
|
||||
*
|
||||
* Since the socket emulation layer always sets the actual socket to
|
||||
* non-blocking mode in order to be able to deliver signals, we must
|
||||
@ -399,6 +400,16 @@ pgwin32_send(SOCKET s, char *buf, int len, int flags)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (pgwin32_noblock)
|
||||
{
|
||||
/*
|
||||
* No data sent, and we are in "emulated non-blocking mode", so
|
||||
* return indicating that we'd block if we were to continue.
|
||||
*/
|
||||
errno = EWOULDBLOCK;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* No error, zero bytes (win2000+) or error+WSAEWOULDBLOCK (<=nt4) */
|
||||
|
||||
if (pgwin32_waitforsinglesocket(s, FD_WRITE | FD_CLOSE, INFINITE) == 0)
|
||||
|
Reference in New Issue
Block a user