< Previous by Date Date Index Next by Date >
< Previous in Thread Thread Index Next in Thread >

Re: [reSIProcate] Problem with Boston Bridge


On Mon, 2005-11-28 at 17:47 -0800, John Draper wrote:
> Dale,  could you please give me the module name where you setup for the
> Invite?

As Scott has noted, BBridge does not send invites.

> I think I'm missing a module, because I have not seen anywhere
> in the code where you are sending the invite...  I did global search for all
> instances of "send()" and could not find one that sends an invite...

No doubt the INVITE is created in one place and passed to another module
to be sent, so a simple search won't find what you're looking for.
You'll have to track through the logic in Dum to find out exactly how
INVITEs are created and sent, I'm afraid.  (I'm no expert in Resip
myself.)

> I also seem to be missing the module where you use the sipx to create
> an RTP session after invite... where is that module please?

BBridge starts RTP using startRtpReceive and startRtpSend -- see around
line 235 in Participant::accept in Participant.cpp.  But you'll have to
track down the logic that those lead to, as I only know that they start
RTP sessions, not how they do so.

Good luck,

Dale