summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bgpd/bgp_packet.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/bgpd/bgp_packet.c b/bgpd/bgp_packet.c
index b0918fc5..d115353f 100644
--- a/bgpd/bgp_packet.c
+++ b/bgpd/bgp_packet.c
@@ -723,13 +723,21 @@ bgp_write_notify (struct peer *peer)
val = fcntl (peer->fd, F_GETFL, 0);
fcntl (peer->fd, F_SETFL, val & ~O_NONBLOCK);
- ret = writen (peer->fd, STREAM_DATA (s), stream_get_endp (s));
+ /* Stop collecting data within the socket */
+ sockopt_cork (peer->fd, 0);
+
+ ret = write (peer->fd, STREAM_DATA (s), stream_get_endp (s));
if (ret <= 0)
{
BGP_EVENT_ADD (peer, TCP_fatal_error);
return 0;
}
+ /* Disable Nagle, make NOTIFY packet go out right away */
+ val = 1;
+ (void) setsockopt (peer->fd, IPPROTO_TCP, TCP_NODELAY,
+ (char *) &val, sizeof (val));
+
/* Retrieve BGP packet type. */
stream_set_getp (s, BGP_MARKER_SIZE + 2);
type = stream_getc (s);