From 2be4f6ebd72351de7bf1ca74167813182f9bac7d Mon Sep 17 00:00:00 2001 From: garciay <yann.garcia@fscom.fr> Date: Wed, 11 Dec 2019 15:42:41 +0100 Subject: [PATCH] Add useTls field Signed-off-by: garciay <yann.garcia@fscom.fr> --- LibOneM2M/OneM2M_Pixits.ttcn | 24 ++++++++++++++++-------- LibOneM2M/OneM2M_TypesAndValues.ttcn | 3 ++- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/LibOneM2M/OneM2M_Pixits.ttcn b/LibOneM2M/OneM2M_Pixits.ttcn index 8af29e1..e18709a 100644 --- a/LibOneM2M/OneM2M_Pixits.ttcn +++ b/LibOneM2M/OneM2M_Pixits.ttcn @@ -157,7 +157,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort := 8080, // SUT CoAP/HTTP port localPort := 3031, // Test Adapter client port (for debug purpose only) - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -171,7 +172,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort := omit, localPort := 3041, // Test Adapter listener port (AeSimu acts as server) - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -189,7 +191,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort := 8080, // SUT CoAP/HTTP port localPort := 3032, // Test Adapter client port (for debug purpose only) - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -203,7 +206,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort := omit, localPort := 3042, // Test Adapter listener port (AeSimu acts as server) - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -224,7 +228,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort:= 8080, localPort := 3131, - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -238,7 +243,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort:= omit, localPort := 3141, - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -252,7 +258,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort:= 8080, localPort := 4131, - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, @@ -266,7 +273,8 @@ module OneM2M_Pixits { tsAddress := "127.0.0.1", remotePort:= omit, localPort := 4141, - sutAddress := "127.0.0.1" + sutAddress := "127.0.0.1", + useTls := false } } }, diff --git a/LibOneM2M/OneM2M_TypesAndValues.ttcn b/LibOneM2M/OneM2M_TypesAndValues.ttcn index dd36e53..dcfc08c 100644 --- a/LibOneM2M/OneM2M_TypesAndValues.ttcn +++ b/LibOneM2M/OneM2M_TypesAndValues.ttcn @@ -4164,7 +4164,8 @@ group OtherTypes { charstring tsAddress, integer remotePort optional, integer localPort optional, - charstring sutAddress + charstring sutAddress, + boolean useTls } /** -- GitLab