diff --git a/IFW_CoAP_Peer_Definitions.ttcn b/IFW_CoAP_Peer_Definitions.ttcn index c039b0b9708dc36ae0d933ce1cfc15af8bba9055..e5f9d96a98f3011c7e80f5eede85e32b312fd284 100644 --- a/IFW_CoAP_Peer_Definitions.ttcn +++ b/IFW_CoAP_Peer_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_CoAP_Peer_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_CoAP_Peer_Definitions diff --git a/IFW_CoAP_Peer_Functions.ttcn b/IFW_CoAP_Peer_Functions.ttcn index 23b3f9c3e7c373616a80028b693ebbe2531532ac..e7aacfb7bc62aaf22f5a6a6c12f495316aa8374d 100644 --- a/IFW_CoAP_Peer_Functions.ttcn +++ b/IFW_CoAP_Peer_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_CoAP_Peer_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_CoAP_Peer_Functions @@ -22,11 +22,33 @@ module IFW_CoAP_Peer_Functions import from IPL4asp_PortType all; import from IFW_Common all; - modulepar - { - float tsp_CoapPeer_maxResponseTime := 0.0; - boolean tsp_cherryPickOptionCheck := true; - } + /////////////////////////////////////////////////////////// + // Module parameter: tsp_CoapPeer_maxResponseTime + // + // Purpose: + // Time the peer is waiting for a response message (0.0->not set) + // + // Type: + // *float* + // + // Default value: + // *0.0* + /////////////////////////////////////////////////////////// + modulepar float tsp_CoapPeer_maxResponseTime := 0.0; + + /////////////////////////////////////////////////////////// + // Module parameter: tsp_cherryPickOptionCheck + // + // Purpose: + // + // + // Type: + // *boolean* + // + // Default value: + // *true* + /////////////////////////////////////////////////////////// + modulepar boolean tsp_cherryPickOptionCheck := true; function f_CoAP_Peer_init() runs on IFW_COAP_CT { diff --git a/IFW_CoAP_Peer_TestSteps.ttcn b/IFW_CoAP_Peer_TestSteps.ttcn index 40d088bb5b63854aecd7016502825c408b21ca49..c4ec66f6911ba27aea3a5f1cbca41703242a4831 100644 --- a/IFW_CoAP_Peer_TestSteps.ttcn +++ b/IFW_CoAP_Peer_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_CoAP_Peer_TestSteps.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_CoAP_Peer_TestSteps diff --git a/IFW_Common.ttcn b/IFW_Common.ttcn index 47f6f20896f33f87c3e18cba5e18dfcb176fd6e2..5fa932a8e305f638522e4f3f1adfc7dca5b1f64f 100644 --- a/IFW_Common.ttcn +++ b/IFW_Common.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_Common.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// diff --git a/IFW_HTTP_Client_Definitions.ttcn b/IFW_HTTP_Client_Definitions.ttcn index 2fd1455ea982eb3cae8e476aacff6fb0b751550a..06f7525110c04b5bc2f6ded44013a4831c40c5ea 100644 --- a/IFW_HTTP_Client_Definitions.ttcn +++ b/IFW_HTTP_Client_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Client_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Client_Definitions diff --git a/IFW_HTTP_Client_Functions.ttcn b/IFW_HTTP_Client_Functions.ttcn index 71cda920add0cdcb0dec5de89a07386dd5769e11..0045d6a28f7193807d93b18500cf7cda1094b887 100644 --- a/IFW_HTTP_Client_Functions.ttcn +++ b/IFW_HTTP_Client_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Client_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Client_Functions @@ -25,10 +25,19 @@ module IFW_HTTP_Client_Functions import from HTTPmsg_MessageLen all; - modulepar - { - float tsp_HTTP_Client_maxResponseTime := 0.0; - } + /////////////////////////////////////////////////////////// + // Module parameter: tsp_HTTP_Client_maxResponseTime + // + // Purpose: + // Time the client is waiting for a response message (0.0->not set) + // + // Type: + // *float* + // + // Default value: + // *0.0* + /////////////////////////////////////////////////////////// + modulepar float tsp_HTTP_Client_maxResponseTime := 0.0; function f_HTTP_Client_init() runs on IFW_HTTP_Client_CT { diff --git a/IFW_HTTP_Client_TestSteps.ttcn b/IFW_HTTP_Client_TestSteps.ttcn index 12fa1539049c9a764cda42e41584afae7b3ec591..9da55e3ac65294a2e735122fe5226f4f201354cb 100644 --- a/IFW_HTTP_Client_TestSteps.ttcn +++ b/IFW_HTTP_Client_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Client_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Client_TestSteps { diff --git a/IFW_HTTP_Server_Definitions.ttcn b/IFW_HTTP_Server_Definitions.ttcn index 4d8a3f653df51ee064fbbbcf4762f103ec98daf5..4222ce1a1f784442ae086f5611678a7d83b0c260 100644 --- a/IFW_HTTP_Server_Definitions.ttcn +++ b/IFW_HTTP_Server_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Server_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Server_Definitions diff --git a/IFW_HTTP_Server_Functions.ttcn b/IFW_HTTP_Server_Functions.ttcn index 4f1574be635e06d5599d7b5f4b3dba3161ee6397..d6f6e4d0a7ec875aa9c30a7782fa0fd7335d9e3d 100644 --- a/IFW_HTTP_Server_Functions.ttcn +++ b/IFW_HTTP_Server_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Server_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Server_Functions diff --git a/IFW_HTTP_Server_TestSteps.ttcn b/IFW_HTTP_Server_TestSteps.ttcn index 8024807be1e9dd4e4423a5f1a4f4a47c396a98f5..5b51502ec5442b636e77196eb39399b1601b1d08 100644 --- a/IFW_HTTP_Server_TestSteps.ttcn +++ b/IFW_HTTP_Server_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Server_TestSteps.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Server_TestSteps diff --git a/IFW_MQTT_Client_Definitions.ttcn b/IFW_MQTT_Client_Definitions.ttcn index 5f7a6a852a878bde86ed05c12144f41997acdc45..f2097b0b4191e825b3ad87920dfd062095d0857e 100644 --- a/IFW_MQTT_Client_Definitions.ttcn +++ b/IFW_MQTT_Client_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_MQTT_Client_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_MQTT_Client_Definitions { diff --git a/IFW_MQTT_Client_Functions.ttcn b/IFW_MQTT_Client_Functions.ttcn index ca2fb0944e4fb3f086c7c1752c84c66e4fcef888..b43b702a97dd5d1fa7a7e1f3d53cd569bf52bbdc 100644 --- a/IFW_MQTT_Client_Functions.ttcn +++ b/IFW_MQTT_Client_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_MQTT_Client_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_MQTT_Client_Functions @@ -23,10 +23,19 @@ module IFW_MQTT_Client_Functions import from IFW_Common all; import from MQTT_v3_1_1_IPL4SizeFunction all; - modulepar - { - float tsp_MQTT_Client_maxResponseTime := 0.0; - } + /////////////////////////////////////////////////////////// + // Module parameter: tsp_MQTT_Client_maxResponseTime + // + // Purpose: + // Time the client is waiting for a response message (0.0->not set) + // + // Type: + // *float* + // + // Default value: + // *0.0* + /////////////////////////////////////////////////////////// + modulepar float tsp_MQTT_Client_maxResponseTime := 0.0; function f_MQTT_Client_init() runs on IFW_MQTT_Client_CT { diff --git a/IFW_MQTT_Client_TestSteps.ttcn b/IFW_MQTT_Client_TestSteps.ttcn index fda62eda89e97b0531582124165ea23cb30a04c1..d23485ab81ef677b52aa5c83d174da1b3f3923f7 100644 --- a/IFW_MQTT_Client_TestSteps.ttcn +++ b/IFW_MQTT_Client_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_MQTT_Client_TestSteps.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_MQTT_Client_TestSteps diff --git a/IoT_FT_Framework_Definitions.ttcn b/IoT_FT_Framework_Definitions.ttcn index 6beb4c818abb21ae9060a4731d5fc165088a07ec..910a74e9c6d14a6720552311f826931e4ed3855e 100644 --- a/IoT_FT_Framework_Definitions.ttcn +++ b/IoT_FT_Framework_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IoT_FT_Framework_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-08-28 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IoT_FT_Framework_Definitions diff --git a/IoT_FT_Framework_Functions.ttcn b/IoT_FT_Framework_Functions.ttcn index 4960d5fc3966752ea435b52b4c91a4b43bb14da5..e81d5782934a0972de93f3db2ba75fd995cecc21 100644 --- a/IoT_FT_Framework_Functions.ttcn +++ b/IoT_FT_Framework_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IoT_FT_Framework_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IoT_FT_Framework_Functions diff --git a/tests/CoapTestSuite_Etsi.ttcn b/tests/CoapTestSuite_Etsi.ttcn index 04efaeca051f5a37cbddb948e0cdddb6b2d0204a..68234176582e4d49910406c6b19b910645273d64 100644 --- a/tests/CoapTestSuite_Etsi.ttcn +++ b/tests/CoapTestSuite_Etsi.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: CoapTestSuite_Etsi.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module CoapTestSuite_Etsi diff --git a/tests/CoapTestSuite_Fw.ttcn b/tests/CoapTestSuite_Fw.ttcn index b1cc672dd8f66ad8167fdaafeeefdd4e409c3f0d..b924ab7251a45e19ffc76d7d07054b27506d61db 100644 --- a/tests/CoapTestSuite_Fw.ttcn +++ b/tests/CoapTestSuite_Fw.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: CoapTestSuite_Fw.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module CoapTestSuite_Fw diff --git a/tests/LeshanTestSuite.ttcn b/tests/LeshanTestSuite.ttcn index 3e16c370d199c6264e4f04eedcda882510715358..3347439f2594f14d764fe195873c85a526187d6c 100644 --- a/tests/LeshanTestSuite.ttcn +++ b/tests/LeshanTestSuite.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: LeshanTestSuite.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module LeshanTestSuite diff --git a/tests/Lwm2mTestSuite.ttcn b/tests/Lwm2mTestSuite.ttcn index 13c00a4e4c9fe3d869b6d2efb8b89e19830b795b..6739338592cd567ea0778774205535ba3af3d764 100644 --- a/tests/Lwm2mTestSuite.ttcn +++ b/tests/Lwm2mTestSuite.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: Lwm2mTestSuite.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module Lwm2mTestSuite diff --git a/tests/MqttTestSuite_Interop.ttcn b/tests/MqttTestSuite_Interop.ttcn index 6eb10a07383b1e0fd5a41aa20e0f821e5d874be8..4b7b4919d77ad0bbe823e18aa7cc14e0a1c72726 100644 --- a/tests/MqttTestSuite_Interop.ttcn +++ b/tests/MqttTestSuite_Interop.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: MqttTestSuite_Interop.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module MqttTestSuite_Interop