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
f03247e7
Commit
f03247e7
authored
8 years ago
by
Tobias Heider
Committed by
Martine Lenders
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gnrc_pktbuf: add gnrc_pktbuf_merge()
Co-Authored-By:
Martine Lenders
<
m.lenders@fu-berlin.de
>
parent
455cdcd0
No related branches found
Branches containing commit
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/gnrc/pktbuf.h
+50
-0
50 additions, 0 deletions
sys/include/net/gnrc/pktbuf.h
sys/net/gnrc/pktbuf/gnrc_pktbuf.c
+27
-0
27 additions, 0 deletions
sys/net/gnrc/pktbuf/gnrc_pktbuf.c
with
77 additions
and
0 deletions
sys/include/net/gnrc/pktbuf.h
+
50
−
0
View file @
f03247e7
...
...
@@ -298,6 +298,56 @@ gnrc_pktsnip_t *gnrc_pktbuf_reverse_snips(gnrc_pktsnip_t *pkt);
*/
gnrc_pktsnip_t
*
gnrc_pktbuf_duplicate_upto
(
gnrc_pktsnip_t
*
pkt
,
gnrc_nettype_t
type
);
/**
* @brief Merge pktsnip chain to single pktsnip.
*
* Specifically it calls @ref gnrc_pktbuf_realloc_data() on @p pkt, then copies
* the data of all following packet snips into that reallocated space, and
* removes the packet snip the data was copied from afterwards.
*
* Example:
* Input:
* buffer
* +---------------------------+ +------+
* | size = 8 | data +-------->| |
* | type = NETTYPE_IPV6 |------------+ +------+
* +---------------------------+ . .
* | next . .
* v . .
* +---------------------------+ +------+
* | size = 40 | data +----------->| |
* | type = NETTYPE_UDP |---------+ +------+
* +---------------------------+ . .
* | next . .
* v
* +---------------------------+ +------+
* | size = 14 | data +-------------->| |
* | type = NETTYPE_UNDEF |------+ +------+
* +---------------------------+ . .
*
*
* Output:
* buffer
* +---------------------------+ +------+
* | size = 62 | data +-------->| |
* | type = NETTYPE_IPV6 |------------+ | |
* +---------------------------+ | |
* | |
* +------+
* . .
*
* @warning @p pkt needs to write protected before calling this function.
* @note Packets in receive order need to call
* @ref gnrc_pktbuf_reverse_snips() first to get the data in the
* correct order.
*
* @param[in,out] pkt The snip to merge.
*
* @return 0, on success
* @return ENOMEM, if no space is left in the packet buffer.
*/
int
gnrc_pktbuf_merge
(
gnrc_pktsnip_t
*
pkt
);
#ifdef DEVELHELP
/**
* @brief Prints some statistics about the packet buffer to stdout.
...
...
This diff is collapsed.
Click to expand it.
sys/net/gnrc/pktbuf/gnrc_pktbuf.c
+
27
−
0
View file @
f03247e7
...
...
@@ -109,5 +109,32 @@ gnrc_pktsnip_t *gnrc_pktbuf_reverse_snips(gnrc_pktsnip_t *pkt)
return
reversed
;
}
int
gnrc_pktbuf_merge
(
gnrc_pktsnip_t
*
pkt
)
{
size_t
offset
=
pkt
->
size
;
size_t
size
=
gnrc_pkt_len
(
pkt
);
int
res
=
0
;
if
(
pkt
->
size
==
size
)
{
return
res
;
}
/* Re-allocate data */
res
=
gnrc_pktbuf_realloc_data
(
pkt
,
size
);
if
(
res
!=
0
)
{
return
res
;
}
/* Copy data to new buffer */
for
(
gnrc_pktsnip_t
*
ptr
=
pkt
->
next
;
ptr
!=
NULL
;
ptr
=
ptr
->
next
)
{
memcpy
(((
uint8_t
*
)
pkt
->
data
)
+
offset
,
ptr
->
data
,
ptr
->
size
);
offset
+=
ptr
->
size
;
}
/* Release old pktsnips and data*/
gnrc_pktbuf_release
(
pkt
->
next
);
pkt
->
next
=
NULL
;
return
res
;
}
/** @} */
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