Skip to content

Commit

Permalink
Merge pull request #86 from CAIDA/fix-large-mrt
Browse files Browse the repository at this point in the history
Fix parsing large mrt (>64k)
  • Loading branch information
alistairking authored Apr 4, 2019
2 parents e579acd + 57465e1 commit 8dca9af
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
BGPStream Change Log
====================

v1.2.3
------
- Released 2019-04-04

### Bug Fixes
- Fixed an issue where BGPStream would crash when parsing MRT records that are larger than 64k (#79)

v1.2.2
------
- Released 2019-02-13
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@

AC_PREREQ([2.68])

AC_INIT([bgpstream], [1.2.2], [bgpstream-info@caida.org])
AC_INIT([bgpstream], [1.2.3], [bgpstream-info@caida.org])

BGPSTREAM_MAJOR_VERSION=1
BGPSTREAM_MID_VERSION=2
BGPSTREAM_MINOR_VERSION=2
BGPSTREAM_MINOR_VERSION=3

LIBBGPSTREAM_MAJOR_VERSION=2
LIBBGPSTREAM_MID_VERSION=0
Expand Down
2 changes: 1 addition & 1 deletion lib/bgpdump/bgpdump_mstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Original Author: Dan Ardelean (dan@ripe.net)

typedef struct mstream {
u_char *start;
u_int16_t position;
u_int32_t position;
u_int32_t len;
} mstream_t;

Expand Down
2 changes: 1 addition & 1 deletion pybgpstream/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
setup(name = "pybgpstream",
description = "A Python interface to BGPStream",
long_description = "Provides a high-level interface for live and historical BGP data analysis. PyBGPStream requires the libBGPStream C library, available at http://bgpstream.caida.org/download.",
version = "1.2.2",
version = "1.2.3",
author = "Alistair King",
author_email = "bgpstream-info@caida.org",
url="http://bgpstream.caida.org",
Expand Down

0 comments on commit 8dca9af

Please sign in to comment.