Knight KE / Mbed OS Game_Master
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers net_test_api.h Source File

net_test_api.h

00001 /*
00002  * Copyright (c) 2016-2017, Arm Limited and affiliates.
00003  * SPDX-License-Identifier: Apache-2.0
00004  *
00005  * Licensed under the Apache License, Version 2.0 (the "License");
00006  * you may not use this file except in compliance with the License.
00007  * You may obtain a copy of the License at
00008  *
00009  *     http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 
00018 /**
00019  * \file net_ipv6_api.h
00020  * \brief IPv6 configuration API.
00021  */
00022 
00023 #ifndef NET_TEST_API_H_
00024 #define NET_TEST_API_H_
00025 
00026 #include "ns_types.h"
00027 #include "Service_Libs/mle_service/mle_service_api.h"
00028 
00029 /**
00030  * \brief Makes TCP protocol drop given number of packets from a particular state (TX side).
00031  *
00032  * Testing API for TCP retransmission mechanism after a packet is dropped in a particular state.
00033  *
00034  * \param state Particular TCP state - Identified by its number from 1-11. Numbering is from the SNMP MIB - RFC 4022.
00035  * \param count No. of packets to be dropped
00036  * \return 0 OK
00037  * \return <0 If request can't be fulfilled, i.e., Not test environment.
00038  */
00039 int8_t arm_nwk_test_tcp_drop_tx(int state, uint8_t count);
00040 
00041 /**
00042  * \brief Makes TCP protocol drop given number of packets from a particular state (RX side).
00043  *
00044  * Testing API for TCP to drop  received packets.
00045  *
00046  * \param state Particular TCP state - Identified by its number from 1-11. Numbering is from the SNMP MIB - RFC 4022.
00047  * \param count No. of packets to be dropped
00048  * \return 0 OK
00049  * \return <0 If request can't be fulfilled, i.e., Not test environment.
00050  */
00051 int8_t arm_nwk_test_tcp_drop_rx(int state, uint8_t count);
00052 
00053 /**
00054  * \brief Resets drop counters.
00055  *
00056  * Testing API for TCP reset any packet drop counters.
00057  */
00058 void arm_nwk_test_tcp_drop_reset(void);
00059 
00060 /**
00061  * \brief Set callback for MLE message receiving filter.
00062  *
00063  * Testing API for setting MLE receive callback for message filtering purposes.
00064  */
00065 void arm_nwk_test_mle_receive_filter_set(mle_service_filter_cb *response_filter_cb);
00066 
00067 #endif //NET_TEST_API_H_