Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
1230fc40
Commit
1230fc40
authored
9 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
ipv6_addr: do not null remaining bits in prefix initialization
parent
1af61260
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sys/include/net/ng_ipv6/addr.h
+1
-1
1 addition, 1 deletion
sys/include/net/ng_ipv6/addr.h
sys/net/network_layer/ng_ipv6/addr/ng_ipv6_addr.c
+2
-3
2 additions, 3 deletions
sys/net/network_layer/ng_ipv6/addr/ng_ipv6_addr.c
with
3 additions
and
4 deletions
sys/include/net/ng_ipv6/addr.h
+
1
−
1
View file @
1230fc40
...
...
@@ -330,7 +330,7 @@ uint8_t ng_ipv6_addr_match_prefix(const ng_ipv6_addr_t *a, const ng_ipv6_addr_t
/**
* @brief Sets IPv6 address @p out with the first @p bits bit taken
* from @p prefix and the remaining bits
to 0
.
* from @p prefix and
leaves
the remaining bits
untouched
.
*
* @param[out] out Prefix to be set.
* @param[in] prefix Address to take prefix from.
...
...
This diff is collapsed.
Click to expand it.
sys/net/network_layer/ng_ipv6/addr/ng_ipv6_addr.c
+
2
−
3
View file @
1230fc40
...
...
@@ -62,8 +62,6 @@ void ng_ipv6_addr_init_prefix(ng_ipv6_addr_t *out, const ng_ipv6_addr_t *prefix,
{
uint8_t
bytes
;
ng_ipv6_addr_set_unspecified
(
out
);
if
(
bits
>
128
)
{
bits
=
128
;
}
...
...
@@ -75,7 +73,8 @@ void ng_ipv6_addr_init_prefix(ng_ipv6_addr_t *out, const ng_ipv6_addr_t *prefix,
if
(
bits
%
8
)
{
uint8_t
mask
=
0xff
<<
(
8
-
(
bits
-
(
bytes
*
8
)));
out
->
u8
[
bytes
]
=
prefix
->
u8
[
bytes
]
&
mask
;
out
->
u8
[
bytes
]
&=
~
mask
;
out
->
u8
[
bytes
]
|=
prefix
->
u8
[
bytes
];
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment