123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!DOCTYPE scenario SYSTEM "sipp.dtd">
- <scenario name="Basic UAS responder">
-
-
-
- <recv request="INVITE" crlf="true">
- </recv>
-
-
-
-
-
-
-
-
-
-
- <send retrans="500">
- <![CDATA[
- SIP/2.0 422 Session Timer too small
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- Contact: <sip:[local_ip]:[local_port];transport=[transport]>
- Min-SE: 5400
- Content-Length: 0
- ]]>
- </send>
- <recv request="ACK"
- optional="true"
- rtd="true"
- crlf="true">
- </recv>
-
- <recv request="INVITE" crlf="true">
- </recv>
- <send retrans="500">
- <![CDATA[
- SIP/2.0 200 OK
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
- Allow-Events: telephone-event
- Contact: <sip:[local_ip]:[local_port];transport=[transport]>
- Supported: replaces
- Session-Expires: 3600;refresher=uas
- Require: timer
- Content-Type: application/sdp
- Content-Disposition: session;handling=required
- Content-Length: [len]
-
- v=0
- o=Some-UserAgent 68 210 IN IP4 [local_ip]
- s=SIP Call
- c=IN IP4 [local_ip]
- t=0 0
- m=audio 17294 RTP/AVP 0 101
- c=IN IP4 [local_ip]
- a=rtpmap:0 PCMU/8000
- a=rtpmap:101 telephone-event/8000
- a=fmtp:101 0-16
- a=ptime:20
- ]]>
- </send>
-
- <recv request="ACK"
- rtd="true"
- crlf="true">
- </recv>
-
-
- <pause milliseconds="4000"/>
-
- <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
-
- <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
- </scenario>
|