1 | <?xml version="1.0" encoding="ISO-8859-1" ?>
|
---|
2 | <scenario name="Basic Sipstone UAC">
|
---|
3 |
|
---|
4 | <send>
|
---|
5 | <![CDATA[
|
---|
6 | INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
|
---|
7 | Via: SIP/2.0/[transport] [local_ip]:[local_port]
|
---|
8 | From: "Shapel)" <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
|
---|
9 | To: sut <sip:[service]@[remote_ip]:[remote_port]>
|
---|
10 | Call-ID: [call_id]
|
---|
11 | Cseq: 1 INVITE
|
---|
12 | Contact: sip:sipp@[local_ip]:[local_port]
|
---|
13 | Content-Type: application/sdp
|
---|
14 | Content-Length: [len]
|
---|
15 |
|
---|
16 |
|
---|
17 | v=0
|
---|
18 | o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
|
---|
19 | s=-
|
---|
20 | t=0 0
|
---|
21 | c=IN IP[media_ip_type] [media_ip]
|
---|
22 | m=audio [media_port] RTP/AVP 0
|
---|
23 | a=rtpmap:0 PCMU/8000
|
---|
24 | ]]>
|
---|
25 | </send>
|
---|
26 |
|
---|
27 | <recv response="100"> optional="true"
|
---|
28 | </recv>
|
---|
29 |
|
---|
30 | <recv response="183"> optional="true"
|
---|
31 | </recv>
|
---|
32 |
|
---|
33 | <recv response="603">
|
---|
34 | </recv>
|
---|
35 |
|
---|
36 | <send>
|
---|
37 | <![CDATA[
|
---|
38 |
|
---|
39 | ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
|
---|
40 | Via: SIP/2.0/[transport] [local_ip]:[local_port]
|
---|
41 | From: Shapel <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
|
---|
42 | To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
|
---|
43 | Call-ID: [call_id]
|
---|
44 | Cseq: 1 ACK
|
---|
45 | Contact: sip:sipp@[local_ip]:[local_port]
|
---|
46 | Max-Forwards: 70
|
---|
47 | Subject: Performance Test
|
---|
48 | Content-Length: 0
|
---|
49 |
|
---|
50 | ]]>
|
---|
51 | </send>
|
---|
52 |
|
---|
53 | <pause milliseconds="5000"/>
|
---|
54 |
|
---|
55 |
|
---|