Skip to content

Commit

Permalink
closes #392
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Mar 21, 2016
1 parent 5f2338a commit a01de00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Version 3.4.16
requested by: Ben Agricola
* Fix: correctly look in /etc/exabgp for programs to run when the path is relative
reported by: Vincent Bernat
* Fix: missing handler for NOTIFICATION
patch by: minglvyy

Version 3.4.15
* Fix: the ttl-security parameter didn´t really work. Fixed for outgoing connections now.
Expand Down
5 changes: 5 additions & 0 deletions lib/exabgp/reactor/api/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,3 +341,8 @@ def _refresh (self, peer, refresh, header, body):
def _operational (self, peer, operational, header, body):
for process in self._notify(peer,'receive-operational'):
self.write(process,self._encoder[process].operational(peer,operational.category,operational,header,body),peer)

@register_process(Message.CODE.NOTIFICATION,_dispatch)
def _notification (self, peer, message, header, body):
for process in self._notify(peer,'receive-notifications'):
self.write(process,self._encoder[process].notification(peer,message,header,body),peer)

0 comments on commit a01de00

Please sign in to comment.