From 78962c1f0df218785ebb7c9155e208fff25a7737 Mon Sep 17 00:00:00 2001 From: YannGarcia Date: Fri, 7 Oct 2022 11:25:27 +0200 Subject: [PATCH] Bug fixed on params type --- ccsrc/Protocols/UDP/udp_layer.hh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ccsrc/Protocols/UDP/udp_layer.hh b/ccsrc/Protocols/UDP/udp_layer.hh index c24d833..90657b2 100644 --- a/ccsrc/Protocols/UDP/udp_layer.hh +++ b/ccsrc/Protocols/UDP/udp_layer.hh @@ -17,6 +17,11 @@ #include "layer.hh" +<<<<<<< HEAD +======= +#include "params.hh" + +>>>>>>> Bug fixed on params type using namespace std; // Required for isnan() #include "Abstract_Socket.hh" @@ -27,7 +32,11 @@ using namespace std; // Required for isnan() * \brief This class provides description of ITS UDP/IP protocol layer */ class udp_layer : public layer, public PORT { +<<<<<<< HEAD params _params; //! Layer parameters +======= + params _params; //! Layer parameters +>>>>>>> Bug fixed on params type struct sockaddr_in _saddr; //! Source socket address description struct sockaddr_in _daddr; //! Destination socket address description bool _reuse_incoming_source_adddress; -- GitLab