hi Sipp users,

I am currently trying to built a Attended call transfer scenario with sipp
using 3pCC mode.
I am simulating UAC's which will send request to UAS(my application server)
and then call will be redirected.

So i have 4 sipp scripts:-

A- B ( one for A and one for B)

B' - C (one for B' and one for C)


Scenario:- A call B, B answer the call. B then puts A on hold and make a
call towards C. C rings and answer the call. Now B will put C on hold and
make transfer. B will get released and A and C talk to each other.

I have used 3pcc connection B and B'
Problem i face is when after B'-C call is established and i want to put it
on hold, my INVITE is rejected by the Application server.
Please see if there is some problem in the INVITE i am sending

Attaching the sipp scripts.

Thanks
Gaurav
<?xml version="1.0" encoding="ISO-8859-1" ?>
<scenario name="SCTP_SIP_ClientC">

  <recv request="INVITE" crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="1"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="2"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="3"/>
    </action>
</recv>



  <send>
    <![CDATA[

      SIP/2.0 100 Trying
      Via: SIP/2.0/UDP 172.21.183.171:4060[$1]
      Via: SIP/2.0/UDP 172.21.183.171:6060[$2]
      Via: SIP/2.0/UDP 172.21.140.205:3131[$3]
      [last_From:]
      [last_Record-route:]
      [last_To:]
      [last_Call-ID:] 
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>
 
 
  <send>
    <![CDATA[

      SIP/2.0 180 Ringing
      Via: SIP/2.0/UDP 172.21.183.171:4060 [$1]
      Via: SIP/2.0/UDP 172.21.183.171:6060 [$2]
      Via: SIP/2.0/UDP 172.21.140.205:3131 [$3]
      [last_From:]
      [last_To:];tag=[call_number]
      [last_Call-ID:] 
      [last_CSeq:]
      Contact: <sip:[local_ip]:[local_port];transport=[transport]>
      Content-Length: 0
      Record-Route: <sip:m...@p.ims.com:4060;lr>
      Record-Route: <sip:m...@s.ims.com:6060;lr>
      Require: 100rel
      [last_RSeq:]
      Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

    ]]>
  </send>


  <recv request="PRACK"crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="4"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="5"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="6"/>
    </action>
   </recv>


<send>
    <![CDATA[
      SIP/2.0 200 OK
      Via: SIP/2.0/UDP 172.21.183.171:4060 [$4]
      Via: SIP/2.0/UDP 172.21.183.171:6060 [$5]
      Via: SIP/2.0/UDP 172.21.140.205:3131 [$6]
      [last_From:]
      [last_To:]
      Contact: <sip:+3316161018@172.21.183.20:25972;transport=udp>
      Call-ID:[call_id]
      [last_CSeq:]
      Content-Length:[len]    
    ]]>
    </send>

  <pause milliseconds="400"/>    

<send>
<![CDATA[
SIP/2.0 200 OK
Via: SIP/2.0/UDP 172.21.183.171:4060 [$1]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$2]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$3]
[last_From:]
[last_To:]
Call-ID: [call_id]
CSeq: 12 INVITE
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Content-Length:[len]
Record-Route: <sip:m...@p.ims.com:4060;lr>
Record-Route: <sip:m...@s.ims.com:6060;lr>
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

v=0
o=doubango 1983 678901 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 4388 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=sendrecv
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango

]]>
</send>


  <recv request="ACK"
        rtd="true"
        crlf="true">
	 <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="From:"
     check_it="true"
     assign_to="7"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="To:"
     check_it="true"
     assign_to="8"/>
    </action>

  </recv>

  <pause milliseconds="4000"/>  

<send>
<![CDATA[
BYE sip:172.21.140.205:3131 SIP/2.0
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch];rport
From:[$8]
To:[$7]
Route: <sip:m...@p.ims.com:4060;lr>
Route: <sip:m...@s.ims.com:6060;lr>
Call-ID: [call_id]
CSeq: 1 BYE
Max-Forwards: 70
Content-Length: 0
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: monster version: 0.9.19
P-Preferred-Identity: <sip:+3316161...@ims.com> 
]]>
</send>

    <recv response="200">
    </recv>

  <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>

  <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
       
</scenario>
<?xml version="1.0" encoding="ISO-8859-1"?>
<scenario name="SCTP_SIP_ClientA">

<send>
<![CDATA[
INVITE sip:+33550000...@ims.com SIP/2.0
Via: SIP/2.0/[transport] 172.21.183.20:[local_port];branch=[branch];rport
From: <sip:+33550000...@ims.com>;tag=[call_number]
To: <sip:+33550000...@ims.com>
Contact: <sip:+33550000001@172.21.183.20:25975;transport=udp>;+g.oma.sip-im;language="en,fr";+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
Call-ID: [call_id]
CSeq: 1 INVITE
Max-Forwards: 70
Route: <sip:172.21.183.171:4060;lr;transport=udp>
Route: <sip:o...@s.ims.com:6060;lr>
Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
P-Preferred-Identity: <sip:+33550000...@ims.com>
Content-Type: application/sdp
Content-Length: 479
Supported: 100rel

v=0
o=doubango 1983 678901 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 4386 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=sendrecv
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango
]]>
</send>


    <recv response="100">
    </recv>

    <recv response="180">
    </recv> 
 
<send>
<![CDATA[
PRACK sip:172.21.140.205:3131 SIP/2.0
Via: SIP/2.0/UDP 172.21.183.20:[local_port];branch=[branch]
[last_From:]
[last_To:]
Contact: <sip:+33550000001@172.21.183.20:25975;transport=udp>;+g.oma.sip-im;language="en,fr";+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
Call-ID: [call_id]
CSeq: 8447 PRACK
Content-Length: 0
Max-Forwards: 70
Route: <sip:m...@p.ims.com:4060;lr>
Route: <sip:m...@s.ims.com:6060;lr>
Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
RAck: 1 1 INVITE  
]]>

</send>

    <recv response="200">
    </recv>

    <recv response="200">
    </recv>

    <send>
      <![CDATA[

        ACK sip:172.21.140.205:3131 SIP/2.0
        Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch];rport
        [last_From:]
        [last_To:]
        Call-ID: [call_id]
        CSeq: 1 ACK
        Contact: <sip:+33550000001@172.21.183.20:25975;transport=udp>;+g.oma.sip-im;language="en,fr";+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
        Max-Forwards: 70
        Route: <sip:m...@p.ims.com:4060;lr>
        Route: <sip:m...@s.ims.com:6060;lr>
        Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
        P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
        Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
        Privacy: none
        P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
        User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
        Content-Length: 0

      ]]>
    </send>
    
<recv request="INVITE" crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="1"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="2"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="3"/>
    </action>
</recv>



  <send>
    <![CDATA[

      SIP/2.0 100 Trying
      Via: SIP/2.0/UDP 172.21.183.171:4060[$1]
      Via: SIP/2.0/UDP 172.21.183.171:6060[$2]
      Via: SIP/2.0/UDP 172.21.140.205:3131[$3]
      [last_From:]
      [last_Record-route:]
      [last_To:]
      [last_Call-ID:] 
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>
  
  
<send>
<![CDATA[
SIP/2.0 200 OK
Via: SIP/2.0/UDP 172.21.183.171:4060 [$1]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$2]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$3]
[last_From:]
[last_To:]
Call-ID: [call_id]
[last_CSeq:]
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Content-Length:[len]
Record-Route: <sip:m...@p.ims.com:4060;lr>
Record-Route: <sip:m...@s.ims.com:6060;lr>
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

v=0
o=doubango 1983 678902 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 4386 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=recvonly
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango
]]>
</send>

<recv request="ACK" crlf="true" rrs="true">
<action></action>
</recv>
 
 
 
 
<recv request="INVITE" crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="9"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="10"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="11"/>
    </action>
</recv>



  <send>
    <![CDATA[

      SIP/2.0 100 Trying
      Via: SIP/2.0/UDP 172.21.183.171:4060[$9]
      Via: SIP/2.0/UDP 172.21.183.171:6060[$10]
      Via: SIP/2.0/UDP 172.21.140.205:3131[$11]
      [last_From:]
      [last_Record-route:]
      [last_To:]
      [last_Call-ID:] 
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>
  
  
<send>
<![CDATA[
SIP/2.0 200 OK
Via: SIP/2.0/UDP 172.21.183.171:4060 [$9]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$10]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$11]
[last_From:]
[last_To:]
Call-ID: [call_id]
[last_CSeq:]
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Content-Length:[len]
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

v=0
o=doubango 1983 678903 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 4386 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=sendrecv
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango
]]>
</send>

<recv request="ACK">
</recv>
 
<recv request="BYE">
    <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="17"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="18"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="19"/>
    </action>
    </recv>

<send>
<![CDATA[
SIP/2.0 200 OK
[last_From:]
[last_To:]
Contact: <sip:+33550000001@172.21.183.20:25975;transport=udp>
[last_Call-ID:]
CSeq: 1 BYE
Content-Length: 0
Via: SIP/2.0/UDP 172.21.183.171:4060 [$17]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$18]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$19]
]]>
</send>

  <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>

  <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
       
</scenario>
<?xml version="1.0" encoding="ISO-8859-1" ?>
<scenario name="SCTP_SIP_ClientB">

  <recv request="INVITE" crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="1"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="2"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="3"/>
    </action>
</recv>



  <send>
    <![CDATA[

      SIP/2.0 100 Trying
      Via: SIP/2.0/UDP 172.21.183.171:4060[$1]
      Via: SIP/2.0/UDP 172.21.183.171:6060[$2]
      Via: SIP/2.0/UDP 172.21.140.205:3131[$3]
      [last_From:]
      [last_Record-route:]
      [last_To:]
      [last_Call-ID:] 
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>
 
 
  <send>
    <![CDATA[

      SIP/2.0 180 Ringing
      Via: SIP/2.0/UDP 172.21.183.171:4060 [$1]
      Via: SIP/2.0/UDP 172.21.183.171:6060 [$2]
      Via: SIP/2.0/UDP 172.21.140.205:3131 [$3]
      [last_From:]
      [last_To:];tag=[call_number]
      [last_Call-ID:] 
      [last_CSeq:]
      Contact: <sip:[local_ip]:[local_port];transport=[transport]>
      Content-Length: 0
      Record-Route: <sip:m...@p.ims.com:4060;lr>
      Record-Route: <sip:m...@s.ims.com:6060;lr>
      Require: 100rel
      RSeq: 32764
      Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

    ]]>
  </send>


<recv request="PRACK"crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="4"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="5"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="6"/>
    </action>
   </recv>


<send>
    <![CDATA[
      SIP/2.0 200 OK
      Via: SIP/2.0/UDP 172.21.183.171:4060 [$4]
      Via: SIP/2.0/UDP 172.21.183.171:6060 [$5]
      Via: SIP/2.0/UDP 172.21.140.205:3131 [$6]
      [last_From:]
      [last_To:]
      Contact: <sip:+33550000004@172.21.183.20:25976;transport=udp>
      Call-ID:[call_id]
      [last_CSeq:]
      Content-Length:[len]    
    ]]>
    </send>

<pause milliseconds="4000"/>    

<send>
<![CDATA[
SIP/2.0 200 OK
Via: SIP/2.0/UDP 172.21.183.171:4060 [$1]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$2]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$3]
[last_From:]
[last_To:]
Call-ID: [call_id]
CSeq: 1 INVITE
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Content-Length:[len]
Record-Route: <sip:m...@p.ims.com:4060;lr>
Record-Route: <sip:m...@s.ims.com:6060;lr>
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

v=0
o=doubango 1983 678901 IN IP4 172.21.183.20
s=-
c=IN IP4 172.21.183.20
t=0 0
m=audio 21120 RTP/AVPF 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=acfg:1 t=1
a=sendrecv
a=rtcp-mux
a=ssrc:2645535755 cname:ldjWoB60jbyQlR6e
a=ssrc:2645535755 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2645535755 label:Doubango

]]>
</send>


  <recv request="ACK"
        rtd="true"
        crlf="true">
	 <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="From:"
     check_it="true"
     assign_to="7"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="To:"
     check_it="true"
     assign_to="8"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Call-ID:"
     check_it="true"
     assign_to="9"/>
    </action>
 </recv>
 
<pause milliseconds="800"/>

<send>
<![CDATA[
INVITE sip:172.21.140.205:3131 SIP/2.0
Via: SIP/2.0/[transport] 172.21.183.20:[local_port];branch=[branch];rport
From: [$8]
To: [$7]
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Call-ID: [$9]
CSeq: 2 INVITE
Max-Forwards: 70
Route: <sip:m...@p.ims.com:4060;lr>
Route: <sip:m...@s.ims.com:6060;lr>
Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
P-Preferred-Identity: <sip:+33550000...@ims.com>
Content-Type: application/sdp
Content-Length: [len]
Supported: 100rel

v=0
o=doubango 1983 678902 IN IP4 172.21.183.20
s=-
c=IN IP4 172.21.183.20
t=0 0
m=audio 21120 RTP/AVPF 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=acfg:1 t=1
a=sendonly
a=rtcp-mux
a=ssrc:2645535755 cname:ldjWoB60jbyQlR6e
a=ssrc:2645535755 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2645535755 label:Doubango

]]>
</send>

  <recv response="100">
  </recv>

  <recv response="200">
  </recv>

<send>
<![CDATA[

ACK sip:172.21.140.205:3131 SIP/2.0
Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch];rport
From: [$8]
To: [$7]
Call-ID: [$9]
CSeq: 2 ACK
Contact: <sip:+33550000004@172.21.183.20:25976;transport=udp>
Max-Forwards: 70
Route: <sip:m...@p.ims.com:4060;lr>
Route: <sip:m...@s.ims.com:6060;lr>
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: monster version: 0.9.19
Content-Length: 0

]]>
</send>

<sendCmd>
<![CDATA[
Call-ID: [call_id]
]]>
</sendCmd>



  <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>

  <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
       
</scenario>
<?xml version="1.0" encoding="ISO-8859-1"?>
<scenario name="SCTP_SIP_ClientA">

<recvCmd>
<action>
</action>
</recvCmd>


<send>
<![CDATA[
INVITE sip:+3316161...@ims.com SIP/2.0
Via: SIP/2.0/[transport] 172.21.183.20:25976;branch=[branch];rport
From: <sip:+33550000...@ims.com>;tag=[call_number]
To: <sip:+3316161...@ims.com>
Contact: <sip:+33550000004@172.21.183.20:25976;transport=udp>;+g.oma.sip-im;language="en,fr";+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
Call-ID: actcalltoc///[call_id]
CSeq: 12 INVITE
Max-Forwards: 70
Route: <sip:172.21.183.171:4060;lr;transport=udp>
Route: <sip:o...@s.ims.com:6060;lr>
Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
P-Preferred-Identity: <sip:+33550000...@ims.com>
Content-Type: application/sdp
Content-Length: 479
Supported: 100rel

v=0
o=doubango 1983 678901 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 4376 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=sendrecv
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango
]]>
</send>


    <recv response="100">
    </recv>

    <recv response="180">
    </recv> 
 
<send>
<![CDATA[
PRACK sip:172.21.140.205:3131 SIP/2.0
Via: SIP/2.0/UDP 172.21.183.20:25976;branch=[branch]
[last_From:]
[last_To:]
Contact: <sip:+33550000004@172.21.183.20:25976;transport=udp>;+g.oma.sip-im;language="en,fr";+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
Call-ID: actcalltoc///[call_id]
CSeq: 8448 PRACK
Content-Length: 0
Max-Forwards: 70
Route: <sip:m...@p.ims.com:4060;lr>
Route: <sip:m...@s.ims.com:6060;lr>
Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
Privacy: none
P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
RAck: 1 12 INVITE  
]]>

</send>

    <recv response="200">
    </recv>

    <recv response="200">
    </recv>

    <send>
      <![CDATA[

        ACK sip:172.21.140.205:3131 SIP/2.0
        Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch];rport
        [last_From:]
        [last_To:]
        Call-ID: [call_id]
        CSeq: 3 ACK
        Contact: <sip:+33550000004@172.21.183.20:25976;transport=udp>;+g.oma.sip-im;language="en,fr";+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
        Max-Forwards: 70
        Route: <sip:m...@p.ims.com:4060;lr>
        Route: <sip:m...@s.ims.com:6060;lr>
        Accept-Contact: *;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel"
        P-Preferred-Service: urn:urn-7:3gpp-service.ims.icsi.mmtel
        Allow: INVITE, ACK, CANCEL, BYE, MESSAGE, OPTIONS, NOTIFY, PRACK, UPDATE, REFER
        Privacy: none
        P-Access-Network-Info: ADSL;utran-cell-id-3gpp=00000000
        User-Agent: IM-client/OMA1.0 Boghe/v2.0.112.744
        Content-Length: 0

      ]]>
    </send>
    
<recv request="INVITE" crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="1"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="2"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="3"/>
    </action>
</recv>



  <send>
    <![CDATA[

      SIP/2.0 100 Trying
      Via: SIP/2.0/UDP 172.21.183.171:4060[$1]
      Via: SIP/2.0/UDP 172.21.183.171:6060[$2]
      Via: SIP/2.0/UDP 172.21.140.205:3131[$3]
      [last_From:]
      [last_Record-route:]
      [last_To:]
      [last_Call-ID:] 
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>
  
  
<send>
<![CDATA[
SIP/2.0 200 OK
Via: SIP/2.0/UDP 172.21.183.171:4060 [$1]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$2]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$3]
[last_From:]
[last_To:]
Call-ID: [call_id]
[last_CSeq:]
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Content-Length:[len]
Record-Route: <sip:m...@p.ims.com:4060;lr>
Record-Route: <sip:m...@s.ims.com:6060;lr>
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

v=0
o=doubango 1984 678802 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 21120 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=recvonly
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango
]]>
</send>

<recv request="ACK" crlf="true" rrs="true">
<action></action>
</recv>
 
 
 
 
<recv request="INVITE" crlf="true" rrs="true">
     <action> 
    <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:4060"
     check_it="true"
     assign_to="9"/>
     <ereg regexp=".*" 
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.183.171:6060"
     check_it="true"
     assign_to="10"/>
     <ereg regexp=".*"
     search_in="hdr" 
     header="Via: SIP/2.0/UDP 172.21.140.205:3131"
    check_it="true"
    assign_to="11"/>
    </action>
</recv>



  <send>
    <![CDATA[

      SIP/2.0 100 Trying
      Via: SIP/2.0/UDP 172.21.183.171:4060[$9]
      Via: SIP/2.0/UDP 172.21.183.171:6060[$10]
      Via: SIP/2.0/UDP 172.21.140.205:3131[$11]
      [last_From:]
      [last_Record-route:]
      [last_To:]
      [last_Call-ID:] 
      [last_CSeq:]
      Content-Length: 0

    ]]>
  </send>
  
  
<send>
<![CDATA[
SIP/2.0 200 OK
Via: SIP/2.0/UDP 172.21.183.171:4060 [$9]
Via: SIP/2.0/UDP 172.21.183.171:6060 [$10]
Via: SIP/2.0/UDP 172.21.140.205:3131 [$11]
[last_From:]
[last_To:]
Call-ID: [call_id]
[last_CSeq:]
Contact: <sip:[local_ip]:[local_port];transport=[transport]>
Content-Length:[len]
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

v=0
o=doubango 1984 678803 IN IP4 10.203.29.57
s=-
c=IN IP4 10.203.29.57
t=0 0
m=audio 21120 RTP/AVP 3 8 0 97 101
a=ptime:20
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:0 PCMU/8000/1
a=rtpmap:97 SPEEX/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-15
a=tcap:1 RTP/AVPF
a=pcfg:1 t=1
a=sendrecv
a=rtcp-mux
a=ssrc:2384149072 cname:ldjWoB60jbyQlR6e
a=ssrc:2384149072 mslabel:6994f7d1-6ce9-4fbd-acfd-84e5131ca2e2
a=ssrc:2384149072 label:Doubango
]]>
</send>

<recv request="ACK">
</recv>
------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to