hello..
is there ability to run a udp basic app from more than one node ( ex: 3 node ) each one with different udpApp, and receive these request by one udp sink app on one node (server for example) ?
more information about what i mean
**.numClients = 3
*.server.numUdpApps = 1
*.clientG4[*].numUdpApps = 1
# Transmitter
*.clientG4[*].udpApp[0].typename = "VoIPSender"
*.clientG4[*].udpApp[0].localPort = 3088+ancestorIndex(0)
*.clientG4[*].udpApp[0].startTime = uniform(1s,2s)
*.clientG4[*].udpApp[0].destAddress = "server1"
*.clientG4[*].udpApp[0].destPort = 1001
#Receiver
*.server1.udpApp[0].typename = "VoIPReceiver"
*.server1.udpApp[0].localPort = 1001
i am doing this with voip app, and its work ok
but when i try to do same thing with udp basic app and sink like below i got error
*.clientG4[0].udpApp[0].typename = "UDPBasicApp"
*.clientG4[0].udpApp[0].destAddresses = "server1"
*.clientG4[0].udpApp[0].localAddress = "clientG4[*]"
*.clientG4[0].udpApp[0].destPort = 1000
*.clientG4[0].udpApp[0].localPort = 1000
*.clientG4[0].udpApp[0].startTime = uniform(1s,2s)
*.server1.udpApp[0].typename = "UDPSink"
*.server1.udpApp[0].localPort = 1000
dose any one know what i made wrong in the config ?
sorry for long message
thank you in advance