From 8b8b69cb13314b4b4661bdf6b405d02e289b231b Mon Sep 17 00:00:00 2001 From: "Marius (TEST VM)" Date: Thu, 14 Mar 2024 17:12:47 +0000 Subject: [PATCH] Update ports to newest BTP standard --- vanetza/btp/ports.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vanetza/btp/ports.hpp b/vanetza/btp/ports.hpp index 520d78543..c74d9b353 100644 --- a/vanetza/btp/ports.hpp +++ b/vanetza/btp/ports.hpp @@ -13,7 +13,7 @@ typedef uint16be_t port_type; namespace ports { -// Port numbers according to ETSI TS 103 248 v2.1.1 (2021-08) +// Port numbers according to ETSI TS 103 248 v2.3.1 (2024-03) static const port_type CAM = host_cast(2001); static const port_type DENM = host_cast(2002); static const port_type TOPO = host_cast(2003); @@ -37,6 +37,11 @@ static const port_type EC_AT_REQUEST = host_cast(2016); static const port_type MCDM = host_cast(2017); static const port_type VAM = host_cast(2018); static const port_type IMZM = host_cast(2019); +static const port_type DSM = host_cast(2020); +static const port_type P2P_CRL = host_cast(2021); +static const port_type P2P_DCTL = host_cast(2022); +static const port_type MRM = host_cast(2023); +static const port_type P2P_FCTL = host_cast(2024); } // namespace ports