Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BIRD Internet Routing Daemon
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
4dd24f05
Commit
4dd24f05
authored
Apr 23, 2014
by
Ondřej Zajíček
1
Browse files
Options
Browse Files
Download
Plain Diff
Merge commit 'origin/master'
parents
1cb0f83d
6c6ebd64
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
NEWS
NEWS
+3
-0
lib/mempool.c
lib/mempool.c
+1
-1
misc/bird.spec
misc/bird.spec
+1
-1
proto/bgp/packets.c
proto/bgp/packets.c
+2
-4
sysdep/config.h
sysdep/config.h
+1
-1
No files found.
NEWS
View file @
4dd24f05
Version 1.4.3 (2014-04-14)
o Important bugfix in IPv6 BGP.
Version 1.4.2 (2014-04-02)
o Important bugfix in BFD.
...
...
lib/mempool.c
View file @
4dd24f05
...
...
@@ -250,7 +250,7 @@ lp_memsize(resource *r)
cnt
++
;
return
ALLOC_OVERHEAD
+
sizeof
(
struct
linpool
)
+
cnt
*
(
ALLOC_OVERHEAD
+
sizeof
(
s
izeof
(
struct
lp_chunk
)
))
+
cnt
*
(
ALLOC_OVERHEAD
+
sizeof
(
s
truct
lp_chunk
))
+
m
->
total
+
m
->
total_large
;
}
...
...
misc/bird.spec
View file @
4dd24f05
Summary: BIRD Internet Routing Daemon
Name: bird
Version: 1.4.
2
Version: 1.4.
3
Release: 1
Copyright: GPL
Group: Networking/Daemons
...
...
proto/bgp/packets.c
View file @
4dd24f05
...
...
@@ -1082,7 +1082,7 @@ bgp_do_rx_update(struct bgp_conn *conn,
{
struct
bgp_proto
*
p
=
conn
->
bgp
;
struct
rte_src
*
src
=
p
->
p
.
main_source
;
rta
*
a0
,
*
a
;
rta
*
a0
,
*
a
=
NULL
;
ip_addr
prefix
;
int
pxlen
,
err
=
0
;
u32
path_id
=
0
;
...
...
@@ -1115,7 +1115,6 @@ bgp_do_rx_update(struct bgp_conn *conn,
if
(
a0
&&
!
bgp_set_next_hop
(
p
,
a0
))
a0
=
NULL
;
a
=
NULL
;
last_id
=
0
;
src
=
p
->
p
.
main_source
;
...
...
@@ -1187,7 +1186,7 @@ bgp_do_rx_update(struct bgp_conn *conn,
byte
*
start
,
*
x
;
int
len
,
len0
;
unsigned
af
,
sub
;
rta
*
a0
,
*
a
;
rta
*
a0
,
*
a
=
NULL
;
ip_addr
prefix
;
int
pxlen
,
err
=
0
;
u32
path_id
=
0
;
...
...
@@ -1234,7 +1233,6 @@ bgp_do_rx_update(struct bgp_conn *conn,
if
(
a0
&&
!
bgp_set_next_hop
(
p
,
a0
))
a0
=
NULL
;
a
=
NULL
;
last_id
=
0
;
src
=
p
->
p
.
main_source
;
...
...
sysdep/config.h
View file @
4dd24f05
...
...
@@ -7,7 +7,7 @@
#define _BIRD_CONFIG_H_
/* BIRD version */
#define BIRD_VERSION "1.4.
2
"
#define BIRD_VERSION "1.4.
3
"
/* Include parameters determined by configure script */
#include "sysdep/autoconf.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment