/***************************************************************************/ /* 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, 0x01, 0xa9, 0xeb, 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_021[] = { {TITLE, "02-021", 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_021_size = sizeof(tahi_02_021) / sizeof(TAHI_TEST_SEQ); #endif /* NX_TAHI_ENABLE */