summaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-10-13 21:46:12 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-10-13 22:19:02 +0900
commit96067b476fabc6271b939e5bc94034a233dea1c4 (patch)
tree946b61eeacc5b68fcde7d47c039afab6ad36685f /server
parentc5fcffd18aad35399aeee8ff1f12233c6fa430c2 (diff)
server: logging received notificaiton
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'server')
-rw-r--r--server/peer.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/server/peer.go b/server/peer.go
index e3a8c7ab..9bc79be8 100644
--- a/server/peer.go
+++ b/server/peer.go
@@ -215,6 +215,15 @@ func (peer *Peer) handleBGPmessage(m *bgp.BGPMessage) ([]*table.Path, bool, []*b
table.UpdatePathAttrs4ByteAs(body)
pathList = table.ProcessMessage(m, peer.peerInfo)
peer.adjRib.UpdateIn(pathList)
+ case bgp.BGP_MSG_NOTIFICATION:
+ body := m.Body.(*bgp.BGPNotification)
+ log.WithFields(log.Fields{
+ "Topic": "Peer",
+ "Key": peer.conf.NeighborConfig.NeighborAddress,
+ "Code": body.ErrorCode,
+ "Subcode": body.ErrorSubcode,
+ "Data": body.Data,
+ }).Warn("received notification")
}
return pathList, update, bgpMsgList
}