Commit 8e4a841a authored by YannGarcia's avatar YannGarcia
Browse files

Remove titan.TestPorts.HTTPmsg; Split codoecs/layers in Protocols; Add support...

Remove titan.TestPorts.HTTPmsg; Split codoecs/layers in Protocols; Add support of NistP384 signature
parent f51ca54c
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -37,9 +37,6 @@
	path = ttcn/AtsSecurity
	url = https://forge.etsi.org/rep/ITS/ttcn/ats_sec_ts103096-3.git
	branch = devel
[submodule "ttcn/modules/titan.TestPorts.HTTPmsg/module"]
	path = ttcn/modules/titan.TestPorts.HTTPmsg/module
	url = https://github.com/eclipse/titan.TestPorts.HTTPmsg.git
[submodule "ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket/module"]
	path = ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket/module
	url = https://github.com/eclipse/titan.TestPorts.Common_Components.Abstract_Socket.git
+1 −1
Original line number Diff line number Diff line
@@ -257,7 +257,7 @@ Pre-requisites:
    - Build the test suite AtsCAM using the following command:

```sh
$ export ATS=AtsCAM # The Abstract Test Suite you wnat to build, such as AtsDENM, AtsSecurity...
$ export ATS=AtsCAM # The Abstract Test Suite you want to build, such as AtsDENM, AtsSecurity...
$ make
...
```
+1 −2
Original line number Diff line number Diff line
@@ -38,8 +38,7 @@ sources += LibItsSecurity_externals.cc
endif

ifeq (AtsRSUsSimulator, $(ATS))
sources += LibItsPki_externals.cc
sources += AtsRSUsSimulator_externals.cc
sources += LibItsPki_externals.cc LibItsSecurity_externals.cc AtsRSUsSimulator_externals.cc
endif

#           LibItsDcc_externals.cc \
+0 −1
Original line number Diff line number Diff line
sources := UpperTesterPkiPort.cc 
includes := .
+1 −1
Original line number Diff line number Diff line
#include "cam_pdu_codec.hh"
#include "LibItsCam_TestSystem.hh"
#include "LibItsCam_TypesAndValues.hh"
#include "asn1/asn_application.h" // from asn1c
#include "loggers.hh"

Loading