Skip to content

Commit

Permalink
Release - mrtparse 1.5 released.
Browse files Browse the repository at this point in the history
  • Loading branch information
t2mune committed Dec 10, 2016
1 parent 50c2b73 commit 7352eba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2016-12-10 Tetsumune KISO <[email protected]>
* Release - mrtparse 1.5 released.
* Update - updated comments.

2016-11-28 Tetsumune KISO <[email protected]>
* Update - added a support for BGP path attribute "LARGE_COMMUNITY". Thank
you pierky.
Expand Down
9 changes: 5 additions & 4 deletions mrtparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import signal
signal.signal(signal.SIGPIPE, signal.SIG_DFL)

__version__ = '1.4'
__version__ = '1.5'

# Magic Number
GZIP_MAGIC = b'\x1f\x8b'
Expand Down Expand Up @@ -334,9 +334,9 @@ def reverse_defaultdict(d):
67:'Support for Dynamic Capability (capability specific)',
# draft-ietf-idr-bgp-multisession
68:'Multisession BGP Capability',
# draft-ietf-idr-add-paths
# Defined in RFC7911
69:'ADD-PATH Capability',
# draft-keyur-bgp-enhanced-route-refresh
# Defined in RFC7313
70:'Enhanced Route Refresh Capability',
# draft-uttaro-idr-bgp-persistence
71:'Long-Lived Graceful Restart (LLGR) Capability',
Expand All @@ -346,6 +346,7 @@ def reverse_defaultdict(d):
# Defined in RFC5291
ORF_T = reverse_defaultdict({
64:'Address Prefix ORF', # Defined in RFC5292
65: 'CP-ORF', # Defined in RFC7543
})

ORF_SEND_RECV = reverse_defaultdict({
Expand All @@ -355,7 +356,7 @@ def reverse_defaultdict(d):
})

# ADD-PATH Capability
# Defined in draft-ietf-idr-add-paths
# Defined in RFC7911
ADD_PATH_SEND_RECV = reverse_defaultdict({
1:'Receive',
2:'Send',
Expand Down

0 comments on commit 7352eba

Please sign in to comment.