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
2b280f86
Commit
2b280f86
authored
6 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
tests/gnrc_ipv6_ext: remove test for parsed packet reception
parent
4befe0b5
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
tests/gnrc_ipv6_ext/main.c
+0
-107
0 additions, 107 deletions
tests/gnrc_ipv6_ext/main.c
tests/gnrc_ipv6_ext/tests/01-run.py
+0
-23
0 additions, 23 deletions
tests/gnrc_ipv6_ext/tests/01-run.py
with
0 additions
and
130 deletions
tests/gnrc_ipv6_ext/main.c
+
0
−
107
View file @
2b280f86
...
...
@@ -161,119 +161,12 @@ static void _send_packet_raw(void)
assert
(
pkt
->
users
==
0
);
}
static
void
_send_packet_parsed
(
void
)
{
gnrc_netif_t
*
iface
=
gnrc_netif_iter
(
NULL
);
gnrc_netif_hdr_t
netif_hdr
;
gnrc_netif_hdr_init
(
&
netif_hdr
,
8
,
8
);
netif_hdr
.
if_pid
=
iface
->
pid
;
uint8_t
ipv6_data
[]
=
{
/* IPv6 Header */
0x60
,
0x00
,
0x00
,
0x00
,
/* version, traffic class, flow label */
0x00
,
0x2a
,
/* payload length: 42 */
0x00
,
/* next header: Hop-by-Hop Option */
0x10
,
/* hop limit: 16 */
/* source address: fd01::1 */
0xfd
,
0x01
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x01
,
/* destination address: fd01::2 */
0xfd
,
0x01
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
};
uint8_t
hop_by_hop_options_data
[]
=
{
/* Hop-by-Hop Options Header */
/* https://tools.ietf.org/html/rfc6553 */
0x2b
,
/* next header: IPv6-Route */
0x00
,
/* hdr ext len: 0 * 8 + 8 = 8 */
0x63
,
/* option type: RPL Option */
0x04
,
/* opt data len: 4 */
0x80
,
/* flags, Down: 1, Rank-Error: 0, Forwarding-Error: 0 */
0x00
,
/* RPLInstanceID */
0x80
,
0x00
,
/* SenderRank */
};
uint8_t
rpl_routing_data
[]
=
{
/* RPL Routing Header */
/* https://tools.ietf.org/html/rfc6554 */
0x11
,
/* next header: UDP */
0x02
,
/* hdr ext len: 2 * 8 + 8 = 24 */
0x03
,
/* routing type: SRH */
0x02
,
/* segments left: 2 */
0xef
,
/* ComprI: 14, ComprE: 15 */
0xd0
,
0x00
,
0x00
,
/* pad and reserved */
/* address: fd01::3, fd01::2 */
0x00
,
0x03
,
0x02
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
};
uint8_t
udp_data
[]
=
{
/* UDP (ignored) */
0x1f
,
0x90
,
/* source port: 8080 */
0x1f
,
0x90
,
/* destination port: 8080 */
0x00
,
0x0a
,
/* length: 10 */
0xff
,
0xff
,
/* checksum */
};
uint8_t
udp_payload
[]
=
{
0x00
,
0x00
,
};
gnrc_pktsnip_t
*
netif
=
gnrc_pktbuf_add
(
NULL
,
&
netif_hdr
,
sizeof
(
netif_hdr
),
GNRC_NETTYPE_NETIF
);
gnrc_pktsnip_t
*
ipv6
=
gnrc_pktbuf_add
(
netif
,
&
ipv6_data
,
sizeof
(
ipv6_data
),
GNRC_NETTYPE_IPV6
);
gnrc_pktsnip_t
*
hop_by_hop_options
=
gnrc_pktbuf_add
(
ipv6
,
&
hop_by_hop_options_data
,
sizeof
(
hop_by_hop_options_data
),
GNRC_NETTYPE_IPV6_EXT
);
gnrc_pktsnip_t
*
rpl_routing
=
gnrc_pktbuf_add
(
hop_by_hop_options
,
&
rpl_routing_data
,
sizeof
(
rpl_routing_data
),
GNRC_NETTYPE_IPV6_EXT
);
gnrc_pktsnip_t
*
udp
=
gnrc_pktbuf_add
(
rpl_routing
,
udp_data
,
sizeof
(
udp_data
),
GNRC_NETTYPE_UDP
);
gnrc_pktsnip_t
*
pkt
=
gnrc_pktbuf_add
(
udp
,
&
udp_payload
,
sizeof
(
udp_payload
),
GNRC_NETTYPE_UNDEF
);
gnrc_netapi_dispatch_receive
(
GNRC_NETTYPE_IPV6
,
GNRC_NETREG_DEMUX_CTX_ALL
,
pkt
);
printf
(
"pkt->users: %d
\n
"
,
pkt
->
users
);
assert
(
pkt
->
users
==
0
);
}
int
main
(
void
)
{
puts
(
"RIOT network stack example application"
);
_init_interface
();
_send_packet_raw
();
_send_packet_parsed
();
/* should be never reached */
return
0
;
...
...
This diff is collapsed.
Click to expand it.
tests/gnrc_ipv6_ext/tests/01-run.py
+
0
−
23
View file @
2b280f86
...
...
@@ -12,29 +12,6 @@ from testrunner import run
def
testfunc
(
child
):
index
=
child
.
expect_exact
([
"
ipv6: Received (src = fd01::1, dst = fd01::2, next header = 0, length = 42)
"
,
"
pkt->users: 0
"
])
if
index
==
1
:
# debug is disabled
child
.
expect_exact
(
"
pkt->users: 0
"
)
return
child
.
expect_exact
(
"
ipv6: handle extension header (nh = 0)
"
)
child
.
expect_exact
(
"
ipv6: Received (src = fd01::1, dst = fd01::3, next header = 0, length = 42)
"
)
child
.
expect_exact
(
"
ipv6: handle extension header (nh = 0)
"
)
child
.
expect_exact
(
"
ipv6: Received (src = fd01::1, dst = fd01::2, next header = 0, length = 42)
"
)
child
.
expect_exact
(
"
ipv6: handle extension header (nh = 0)
"
)
child
.
expect_exact
(
"
ipv6: forward nh = 17 to other threads
"
)
child
.
expect_exact
(
"
pkt->users: 0
"
)
child
.
expect_exact
(
"
ipv6: handle extension header (nh = 0)
"
)
child
.
expect_exact
(
"
ipv6: Received (src = fd01::1, dst = fd01::3, next header = 0, length = 42)
"
)
child
.
expect_exact
(
"
ipv6: handle extension header (nh = 0)
"
)
child
.
expect_exact
(
"
ipv6: Received (src = fd01::1, dst = fd01::2, next header = 0, length = 42)
"
)
child
.
expect_exact
(
"
ipv6: handle extension header (nh = 0)
"
)
child
.
expect_exact
(
"
ipv6: forward nh = 17 to other threads
"
)
child
.
expect_exact
(
"
pkt->users: 0
"
)
...
...
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