12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- %description:
- Testing PR-SCTP: prMethod=PR_RTX prValue=1
- %#--------------------------------------------------------------------------------------------------------------
- %#--------------------------------------------------------------------------------------------------------------
- %inifile: omnetpp.ini
- [General]
- network=SCTPFeatureTest
- cmdenv-event-banners=false
- cmdenv-express-mode = false
- tkenv-plugin-path = ../../../etc/plugins
- ned-path = .;../../../../src;../../lib
- #omnetpp 5.0 - 5.1 compatibility:
- eventlog-file = "${resultdir}/${configname}-${runnumber}.elog"
- output-scalar-file = "${resultdir}/${configname}-${runnumber}.sca"
- output-vector-file = "${resultdir}/${configname}-${runnumber}.vec"
- snapshot-file = "${resultdir}/${configname}-${runnumber}.sna"
- **.testing = false
- **.testTimeout = 0
- # udp app (off)
- **.numUdpApps = 0
- **.udpType = ""
- **.numTcpApps = 0
- **.tcpType = "TCP"
- # sctp apps
- **.sctp_client.numSctpApps = 1
- **.sctp_client.sctpType="SCTP"
- **.sctp_client.sctpApp[0].typename = "SCTPClient"
- **.sctp_client.sctpApp[0].localAddress = "10.1.1.1"
- **.sctp_client.sctpApp[0].connectAddress = "10.1.3.1"
- **.sctp_client.sctpApp[0].primaryPath = "10.1.3.1"
- **.sctp_client.sctpApp[0].connectPort = 6666
- **.sctp_client.sctpApp[0].requestLength= 1452
- **.sctp_client.sctpApp[0].startTime = truncnormal(1s,0.2s)
- **.sctp_client.sctpApp[0].stopTime = truncnormal(100s,2s)
- **.sctp_client.sctpApp[0].numRequestsPerSession = 100000000
- **.sctp_client.sctpApp[0].queueSize = 100
- **.sctp_client.sctpApp[0].outboundStreams = 1
- **.sctp_client.sctpApp[0].prMethod = 2 # 0=NONE 1=PR_TTL 2=PR_RTX 3=PR_PRIO 4=PR_STRRST
- **.sctp_client.sctpApp[0].prValue = 1 # 0 retransmissions
- **.sctp_server.numSctpApps = 1
- **.sctp_server.sctpType="SCTP"
- **.sctp_server.sctpApp[0].typename = "SCTPServer"
- **.sctp_server.sctpApp[0].localAddress = "10.1.3.1"
- **.sctp_server.sctpApp[0].localPort = 6666
- **.sctp_server.sctpApp[*].queueSize = 0 #Size of sendQueue before App is notified to send new data
- **.sctp_server.sctpApp[*].numPacketsToSendPerClient = 0
- **.sctp_server.sctpApp[*].numPacketsToReceivePerClient = 0
- **.sctp_server.sctpApp[*].outboundStreams = 1
- # sctp settings
- **.sctp.sctpAlgorithmClass = "SCTPAlg"
- %#--------------------------------------------------------------------------------------------------------------
- %not-contains-regex: stdout
- "Association 1: number of Fast RTX=0"
- %#--------------------------------------------------------------------------------------------------------------
|