Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
c33d4cad
Commit
c33d4cad
authored
Jun 05, 2004
by
Martin Mareš
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the tests for socket existence here.
BTW, where do you exactly set the new buffer sizes?
parent
4da25acb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
proto/ospf/iface.c
proto/ospf/iface.c
+6
-3
No files found.
proto/ospf/iface.c
View file @
c33d4cad
...
...
@@ -433,9 +433,12 @@ ospf_if_notify(struct proto *p, unsigned flags, struct iface *iface)
struct
ospf_packet
*
op
;
struct
ospf_neighbor
*
n
;
OSPF_TRACE
(
D_EVENTS
,
"Changing MTU on interface %s."
,
iface
->
name
);
sk_reallocate
(
ifa
->
hello_sk
);
sk_reallocate
(
ifa
->
dr_sk
);
sk_reallocate
(
ifa
->
ip_sk
);
if
(
ifa
->
hello_sk
)
sk_reallocate
(
ifa
->
hello_sk
);
if
(
ifa
->
dr_sk
)
sk_reallocate
(
ifa
->
dr_sk
);
if
(
ifa
->
ip_sk
)
sk_reallocate
(
ifa
->
ip_sk
);
WALK_LIST
(
n
,
ifa
->
neigh_list
)
{
...
...
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