[reSIProcate] DUM call transfer / makeRefer question
Hi!
Im trying to write a small click-to-dial application based on
BasicCall.cxx. The application calls a destination and as soon as the
called party answers the call, my applications should send a REFER. I tried:
if (uac.connected) {//"connected"will be set in virtual void onConnected
NameAddr callerAor("sip:klaus.darilion@xxxxxxxxxxx");
NameAddr referToAor("sip:klaus3000@xxxxxxxxx");
dumUac->send(dumUac->makeRefer(callerAor, uacAor, referToAor));
uac.connected = false;
}
There is a declaration of makeRefer() in DialogUsageManager, but no
implementation. Is the call transfer feature still in development or do
I have to use any of the makeRefer() methodes in InviteSession.cxx?
regards,
Klaus