summaryrefslogtreecommitdiffstats
path: root/proto/bgp/bgp.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-05-14 16:54:39 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-05-14 16:54:39 +0200
commit475977242ac5bb9ff8826c2dd8c9a1a180320de2 (patch)
tree492a30a92b83d398635c5c4e720ae140a1a53513 /proto/bgp/bgp.c
parent0267f49fb2e44525aa2777bcb9900c4bb2db41e1 (diff)
downloadbird-475977242ac5bb9ff8826c2dd8c9a1a180320de2.tar
bird-475977242ac5bb9ff8826c2dd8c9a1a180320de2.zip
Handle EPIPE as a common connection close event.
Diffstat (limited to 'proto/bgp/bgp.c')
-rw-r--r--proto/bgp/bgp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c
index 378cc85..253322c 100644
--- a/proto/bgp/bgp.c
+++ b/proto/bgp/bgp.c
@@ -434,6 +434,15 @@ bgp_sock_err(sock *sk, int err)
struct bgp_conn *conn = sk->data;
struct bgp_proto *p = conn->bgp;
+ /*
+ * This error hook may be called either asynchronously from main
+ * loop, or synchronously from sk_send(). But sk_send() is called
+ * only from bgp_tx() and bgp_kick_tx(), which are both called
+ * asynchronously from main loop. Moreover, they end if err hook is
+ * called. Therefore, we could suppose that it is always called
+ * asynchronously.
+ */
+
bgp_store_error(p, conn, BE_SOCKET, err);
if (err)