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
645ea902
Commit
645ea902
authored
8 years ago
by
Sebastian Meiling
Browse files
Options
Downloads
Patches
Plain Diff
cppcheck: grnc/netif/hdr fix cppcheck warnings
parent
ae1bf7e4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sys/net/gnrc/netif/hdr/gnrc_netif_hdr.c
+14
-30
14 additions, 30 deletions
sys/net/gnrc/netif/hdr/gnrc_netif_hdr.c
with
14 additions
and
30 deletions
sys/net/gnrc/netif/hdr/gnrc_netif_hdr.c
+
14
−
30
View file @
645ea902
...
...
@@ -40,59 +40,43 @@ gnrc_pktsnip_t *gnrc_netif_hdr_build(uint8_t *src, uint8_t src_len, uint8_t *dst
uint8_t
gnrc_netif_hdr_get_flag
(
gnrc_pktsnip_t
*
pkt
)
{
gnrc_netif_hdr_t
*
netif_hdr
;
assert
(
pkt
!=
NULL
);
pkt
=
gnrc_pktsnip_search_type
(
pkt
,
GNRC_NETTYPE_NETIF
);
if
(
pkt
)
{
netif_hdr
=
pkt
->
data
;
if
(
netif_hdr
)
{
return
netif_hdr
->
flags
;
}
if
(
pkt
&&
pkt
->
data
)
{
gnrc_netif_hdr_t
*
netif_hdr
=
pkt
->
data
;
return
netif_hdr
->
flags
;
}
return
0U
;
}
int
gnrc_netif_hdr_get_dstaddr
(
gnrc_pktsnip_t
*
pkt
,
uint8_t
**
pointer_to_addr
)
{
int
res
;
gnrc_netif_hdr_t
*
netif_hdr
;
assert
(
pkt
!=
NULL
);
pkt
=
gnrc_pktsnip_search_type
(
pkt
,
GNRC_NETTYPE_NETIF
);
if
(
pkt
)
{
netif_hdr
=
pkt
->
data
;
if
(
netif_hdr
)
{
if
((
res
=
netif_hdr
->
dst_l2addr_len
)
<=
0
)
{
return
-
ENOENT
;
}
if
(
pkt
&&
pkt
->
data
)
{
gnrc_netif_hdr_t
*
netif_hdr
=
pkt
->
data
;
if
(
netif_hdr
->
dst_l2addr_len
>
0
)
{
*
pointer_to_addr
=
gnrc_netif_hdr_get_dst_addr
(
netif_hdr
);
return
res
;
return
netif_hdr
->
dst_l2addr_len
;
}
}
return
-
ENOENT
;
}
int
gnrc_netif_hdr_get_srcaddr
(
gnrc_pktsnip_t
*
pkt
,
uint8_t
**
pointer_to_addr
)
{
int
res
;
gnrc_netif_hdr_t
*
netif_hdr
;
assert
(
pkt
!=
NULL
);
pkt
=
gnrc_pktsnip_search_type
(
pkt
,
GNRC_NETTYPE_NETIF
);
if
(
pkt
)
{
netif_hdr
=
pkt
->
data
;
if
(
netif_hdr
)
{
if
((
res
=
netif_hdr
->
src_l2addr_len
)
<=
0
)
{
return
-
ENOENT
;
}
if
(
pkt
&&
pkt
->
data
)
{
gnrc_netif_hdr_t
*
netif_hdr
=
pkt
->
data
;
if
(
netif_hdr
->
src_l2addr_len
>
0
)
{
*
pointer_to_addr
=
gnrc_netif_hdr_get_src_addr
(
netif_hdr
);
return
res
;
return
netif_hdr
->
src_l2addr_len
;
}
}
return
-
ENOENT
;
}
...
...
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