-
Key: DDSIRTP26-26
-
Status: open
-
Source: N/A ( Frans Schneider)
-
Summary:
The if statement on the second line should start on a new line.
{ Receiver.multicastReplyLocatorList = InfoReply.multicastLocatorList } else { Receiver.multicastReplyLocatorList = <empty> }
Instead of:
```
ReceiverReceiver.unicastReplyLocatorList =
InfoReply.unicastLocatorList if ( MulticastFlag )
```
this should be:
```
ReceiverReceiver.unicastReplyLocatorList = InfoReply.unicastLocatorList
if ( MulticastFlag ){ Receiver.multicastReplyLocatorList = InfoReply.multicastLocatorList }else
{ Receiver.multicastReplyLocatorList = <empty> }```
-
Reported: DDSI-RTPS 2.5 — Wed, 2 Mar 2022 13:07 GMT
-
Updated: Wed, 2 Mar 2022 21:43 GMT