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

Re: [reSIProcate] Problem with Boston Bridge


Dale R. Worley wrote:

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.)
That's what I've been doing.... I think I have it, it's just something isn't "connected" right... I'm now trying to compose a more intelligent description
of my problem.  One that gives a more accurate idea on what I'm doing.
I just don't explain things that well...  :-(

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.

Excellent - thanx for giving me a good starting point. This is just what I'm
looking for,

John