Skip to content
Snippets Groups Projects
Commit cefaab14 authored by jpbl's avatar jpbl
Browse files

See ChangeLog

parent 62063f57
No related branches found
No related tags found
No related merge requests found
...@@ -12,3 +12,6 @@ Sherry Yang (syangs04 at yahoo dot com) ...@@ -12,3 +12,6 @@ Sherry Yang (syangs04 at yahoo dot com)
Imran Akbar (imr at stanford dot edu) Imran Akbar (imr at stanford dot edu)
- Working on Win32 port - Working on Win32 port
Contributors:
Mikael Magnusson
\ No newline at end of file
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
SFLphone (0.4.1-pre2) / now SFLphone (0.4.1-pre2) / now
* rearranged utilspp use * rearranged utilspp use
* Bug fix when trying to use more than 6 lines. * Bug fix when trying to use more than 6 lines.
* Now, we send a final response to reINVITEs
(thanks to Mikael Magnusson)
SFLphone (0.4.1-pre1) / 2005-08-11 SFLphone (0.4.1-pre1) / 2005-08-11
* Use libeXosip2 * Use libeXosip2
......
Jean-Philippe Barette-LaPierre (30 April 2005) version 0.4.1-pre1
- Now, we send a final response to reINVITEs
(thanks to Mikael Magnusson)
Jean-Philippe Barette-LaPierre (29 April 2005) version 0.4.1-pre1 Jean-Philippe Barette-LaPierre (29 April 2005) version 0.4.1-pre1
- Bug fix when trying to use more than 6 lines. - Bug fix when trying to use more than 6 lines.
......
...@@ -55,7 +55,8 @@ using namespace std; ...@@ -55,7 +55,8 @@ using namespace std;
#define VOICE_MSG "Voice-Message" #define VOICE_MSG "Voice-Message"
#define LENGTH_VOICE_MSG 15 #define LENGTH_VOICE_MSG 15
SipVoIPLink::SipVoIPLink (short id) : VoIPLink (id) SipVoIPLink::SipVoIPLink (short id)
: VoIPLink (id)
{ {
setId(id); setId(id);
_localPort = 0; _localPort = 0;
...@@ -69,10 +70,6 @@ SipVoIPLink::SipVoIPLink (short id) : VoIPLink (id) ...@@ -69,10 +70,6 @@ SipVoIPLink::SipVoIPLink (short id) : VoIPLink (id)
SipVoIPLink::~SipVoIPLink (void) SipVoIPLink::~SipVoIPLink (void)
{ {
if (_evThread != NULL) {
delete _evThread;
_evThread = NULL;
}
delete _sipcallVector; delete _sipcallVector;
delete _audiortp; delete _audiortp;
} }
...@@ -143,8 +140,9 @@ SipVoIPLink::isInRtpmap (int index, int payload, CodecDescriptorVector* cdv) { ...@@ -143,8 +140,9 @@ SipVoIPLink::isInRtpmap (int index, int payload, CodecDescriptorVector* cdv) {
} }
void void
SipVoIPLink::quit(void) SipVoIPLink::terminate(void)
{ {
delete _evThread;
eXosip_quit(); eXosip_quit();
} }
...@@ -620,6 +618,10 @@ SipVoIPLink::getEvent (void) ...@@ -620,6 +618,10 @@ SipVoIPLink::getEvent (void)
break; break;
case EXOSIP_CALL_REINVITE:
eXosip_call_send_answer(event->tid, 403, NULL);
break;
// The peer-user answers // The peer-user answers
case EXOSIP_CALL_ANSWERED: case EXOSIP_CALL_ANSWERED:
id = findCallId(event); id = findCallId(event);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment