Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
babeld
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
babeld
Commits
3f0b34c2
Commit
3f0b34c2
authored
Jul 28, 2014
by
Matthieu Boutier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Format TLV for multihop requests.
parent
57d9928c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
7 deletions
+28
-7
message.c
message.c
+24
-7
message.h
message.h
+3
-0
resend.c
resend.c
+1
-0
No files found.
message.c
View file @
3f0b34c2
...
...
@@ -1783,10 +1783,11 @@ send_unicast_request(struct neighbour *neigh,
void
send_multihop_request
(
struct
interface
*
ifp
,
const
unsigned
char
*
prefix
,
unsigned
char
plen
,
const
unsigned
char
*
src_prefix
,
unsigned
char
src_plen
,
unsigned
short
seqno
,
const
unsigned
char
*
id
,
unsigned
short
hop_count
)
{
int
v4
,
pb
,
len
;
int
v4
,
pb
,
spb
,
len
;
/* Make sure any buffered updates go out before this request. */
flushupdates
(
ifp
);
...
...
@@ -1796,7 +1797,8 @@ send_multihop_request(struct interface *ifp,
FOR_ALL_INTERFACES
(
ifp_aux
)
{
if
(
!
if_up
(
ifp_aux
))
continue
;
send_multihop_request
(
ifp_aux
,
prefix
,
plen
,
seqno
,
id
,
hop_count
);
send_multihop_request
(
ifp_aux
,
prefix
,
plen
,
src_prefix
,
src_plen
,
seqno
,
id
,
hop_count
);
}
return
;
}
...
...
@@ -1804,18 +1806,25 @@ send_multihop_request(struct interface *ifp,
if
(
!
if_up
(
ifp
))
return
;
debugf
(
"Sending request (%d) on %s for %s.
\n
"
,
hop_count
,
ifp
->
name
,
format_prefix
(
prefix
,
plen
));
debugf
(
"Sending request (%d) on %s for %s from %s.
\n
"
,
hop_count
,
ifp
->
name
,
format_prefix
(
prefix
,
plen
),
format_prefix
(
src_prefix
,
src_plen
));
v4
=
plen
>=
96
&&
v4mapped
(
prefix
);
pb
=
v4
?
((
plen
-
96
)
+
7
)
/
8
:
(
plen
+
7
)
/
8
;
len
=
6
+
8
+
pb
;
start_message
(
ifp
,
MESSAGE_MH_REQUEST
,
len
);
if
(
src_plen
!=
0
)
{
spb
=
v4
?
((
src_plen
-
96
)
+
7
)
/
8
:
(
src_plen
+
7
)
/
8
;
len
+=
spb
;
start_message
(
ifp
,
MESSAGE_MH_REQUEST_SRC_SPECIFIC
,
len
);
}
else
{
start_message
(
ifp
,
MESSAGE_MH_REQUEST
,
len
);
}
accumulate_byte
(
ifp
,
v4
?
1
:
2
);
accumulate_byte
(
ifp
,
v4
?
plen
-
96
:
plen
);
accumulate_short
(
ifp
,
seqno
);
accumulate_byte
(
ifp
,
hop_count
);
accumulate_byte
(
ifp
,
0
);
accumulate_byte
(
ifp
,
v4
?
src_plen
-
96
:
src_plen
);
accumulate_bytes
(
ifp
,
id
,
8
);
if
(
prefix
)
{
if
(
v4
)
...
...
@@ -1823,6 +1832,14 @@ send_multihop_request(struct interface *ifp,
else
accumulate_bytes
(
ifp
,
prefix
,
pb
);
}
if
(
src_plen
!=
0
)
{
if
(
v4
)
accumulate_bytes
(
ifp
,
src_prefix
+
12
,
spb
);
else
accumulate_bytes
(
ifp
,
src_prefix
,
spb
);
end_message
(
ifp
,
MESSAGE_MH_REQUEST_SRC_SPECIFIC
,
len
);
return
;
}
end_message
(
ifp
,
MESSAGE_MH_REQUEST
,
len
);
}
...
...
@@ -1869,7 +1886,7 @@ send_request_resend(struct neighbour *neigh,
if
(
neigh
)
send_unicast_multihop_request
(
neigh
,
prefix
,
plen
,
seqno
,
id
,
127
);
else
send_multihop_request
(
NULL
,
prefix
,
plen
,
seqno
,
id
,
127
);
send_multihop_request
(
NULL
,
prefix
,
plen
,
zeroes
,
0
,
seqno
,
id
,
127
);
record_resend
(
RESEND_REQUEST
,
prefix
,
plen
,
zeroes
,
0
,
seqno
,
id
,
neigh
?
neigh
->
ifp
:
NULL
,
resend_delay
);
...
...
message.h
View file @
3f0b34c2
...
...
@@ -42,6 +42,7 @@ THE SOFTWARE.
/* 11 and 12 are for authentication */
#define MESSAGE_UPDATE_SRC_SPECIFIC 13
#define MESSAGE_REQUEST_SRC_SPECIFIC 14
#define MESSAGE_MH_REQUEST_SRC_SPECIFIC 15
/* Protocol extension through sub-TLVs. */
#define SUBTLV_PAD1 0
...
...
@@ -90,6 +91,8 @@ void send_unicast_request(struct neighbour *neigh,
unsigned
char
src_plen
);
void
send_multihop_request
(
struct
interface
*
ifp
,
const
unsigned
char
*
prefix
,
unsigned
char
plen
,
const
unsigned
char
*
src_prefix
,
unsigned
char
src_plen
,
unsigned
short
seqno
,
const
unsigned
char
*
id
,
unsigned
short
hop_count
);
void
...
...
resend.c
View file @
3f0b34c2
...
...
@@ -315,6 +315,7 @@ do_resend()
case
RESEND_REQUEST
:
send_multihop_request
(
resend
->
ifp
,
resend
->
prefix
,
resend
->
plen
,
resend
->
src_prefix
,
resend
->
src_plen
,
resend
->
seqno
,
resend
->
id
,
127
);
break
;
case
RESEND_UPDATE
:
...
...
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