1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/***************************************************************************/
/* Copyright (c) 2024 Microsoft Corporation */
/* Copyright (c) 2026 Eclipse ThreadX contributors */
/* */
/* This program and the accompanying materials are made available under */
/* the terms of the MIT License which is available at */
/* https://opensource.org/licenses/MIT. */
/* */
/* SPDX-License-Identifier: MIT */
/***************************************************************************/
#include "nx_api.h"
#if defined(NX_TAHI_ENABLE) && defined(FEATURE_NX_IPV6)
#include "netx_tahi.h"
static char pkt1[] = {
0x00, 0x11, 0x22, 0x33, 0x44, 0x56, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x86, 0xdd, 0x60, 0x00,
0x00, 0x00, 0x00, 0x20, 0x3a, 0xff, 0xfe, 0x80,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
0x00, 0xff, 0xfe, 0x00, 0x01, 0x00, 0xfe, 0x80,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x11,
0x22, 0xff, 0xfe, 0x33, 0x44, 0x56, 0x87, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x80,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x11,
0x22, 0xff, 0xfe, 0x33, 0x44, 0x56, 0x01, 0x01,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00 };
TAHI_TEST_SEQ tahi_02_020[] = {
{TITLE, "02-020", 6, 0},
{WAIT, NX_NULL, 0, 5},
{INJECT, &pkt1[0], sizeof(pkt1), 0},
{N_CHECK, (char *)NA, 0, 2},
{CLEANUP, NX_NULL, 0, 0},
{DUMP, NX_NULL, 0, 0}
};
int tahi_02_020_size = sizeof(tahi_02_020) / sizeof(TAHI_TEST_SEQ);
#endif /* NX_TAHI_ENABLE */
|