mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
111 lines
2.3 KiB
XML
111 lines
2.3 KiB
XML
<?xml version="1.0" encoding="ISO-8859-2" ?>
|
|
|
|
<!-- Use with CSV file struct like: 3000;192.168.1.106;[authentication username=3000 password=3000];
|
|
(user part of uri, server address, auth tag in each line)
|
|
-->
|
|
|
|
<scenario name="register_client">
|
|
<send retrans="500">
|
|
<![CDATA[
|
|
|
|
REGISTER sip:127.0.0.1 SIP/2.0
|
|
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
|
|
From: <sip:300@127.0.0.1>;tag=[call_number]
|
|
To: <sip:300@127.0.0.1>
|
|
Call-ID: [call_id]
|
|
CSeq: [cseq] REGISTER
|
|
Contact: sip:300@[local_ip]:[local_port]
|
|
Max-Forwards: 10
|
|
Expires: 120
|
|
User-Agent: SIPp/Win32
|
|
Content-Length: 0
|
|
|
|
]]>
|
|
</send>
|
|
|
|
<!-- asterisk -->
|
|
<recv response="200">
|
|
<!--
|
|
<action>
|
|
<ereg regexp=".*" search_in="hdr" header="Contact:" check_it="true" assign_to="1" />
|
|
</action>
|
|
-->
|
|
</recv>
|
|
|
|
<!--
|
|
<recv request="INVITE" crlf="true">
|
|
</recv>
|
|
|
|
<send>
|
|
<![CDATA[
|
|
|
|
SIP/2.0 180 Ringing
|
|
[last_Via:]
|
|
[last_From:]
|
|
[last_To:];tag=[pid]SIPpTag01[call_number]
|
|
[last_Call-ID:]
|
|
[last_CSeq:]
|
|
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
|
|
Content-Length: 0
|
|
|
|
]]>
|
|
</send>
|
|
|
|
<send retrans="500">
|
|
<![CDATA[
|
|
|
|
SIP/2.0 200 OK
|
|
[last_Via:]
|
|
[last_From:]
|
|
[last_To:];tag=[pid]SIPpTag01[call_number]
|
|
[last_Call-ID:]
|
|
[last_CSeq:]
|
|
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
|
|
Content-Type: application/sdp
|
|
Content-Length: [len]
|
|
|
|
v=0
|
|
o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
|
|
s=-
|
|
c=IN IP[media_ip_type] [media_ip]
|
|
t=0 0
|
|
m=audio [media_port] RTP/AVP 0
|
|
a=rtpmap:0 PCMU/8000
|
|
|
|
]]>
|
|
</send>
|
|
|
|
<recv request="ACK"
|
|
optional="true"
|
|
rtd="true"
|
|
crlf="true">
|
|
</recv>
|
|
|
|
<recv request="BYE">
|
|
</recv>
|
|
|
|
<send>
|
|
<![CDATA[
|
|
|
|
SIP/2.0 200 OK
|
|
[last_Via:]
|
|
[last_From:]
|
|
[last_To:]
|
|
[last_Call-ID:]
|
|
[last_CSeq:]
|
|
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
|
|
Content-Length: 0
|
|
|
|
]]>
|
|
</send>
|
|
|
|
<timewait milliseconds="4000"/>
|
|
|
|
|
|
<ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
|
|
|
|
<CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
|
|
-->
|
|
|
|
</scenario>
|