Hi,
I want to send a specific message e.g. "Test Message" from host1 to host2. Right now I can send a dummy message through following lines in .INI file and it works but how can I specify a specific message in a packet rather than a dummy message?
**.host[0].numUdpApps = 1
**.host[0].udpApp[0].typename = "UDPBasicApp"
**.host[0].udpApp[0].localPort = 100
**.host[0].udpApp[0].destPort = 100
**.host[0].udpApp[0].messageLength = 128 bytes
**.host[0].udpApp[0].sendInterval = 1s
**.host[0].udpApp[0].destAddresses = "host[1]"
**.host[1].numUdpApps = 1
**.host[1].udpApp[0].typename = "UDPSink"
**.host[1].udpApp[0].localPort = 100
Also, if i specify a message, do I need to specify messageLength as well?
Thank you.