Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
77751a2f
Commit
77751a2f
authored
Sep 04, 2007
by
Alexandre Bourget
Browse files
Fix comments.
parent
20347c80
Changes
2
Show whitespace changes
Inline
Side-by-side
src/sipcall.cpp
View file @
77751a2f
...
...
@@ -37,10 +37,7 @@ SIPCall::~SIPCall()
{
}
/**
* Answer incoming call correclty before telling the user
* @param event eXosip Event
*/
bool
SIPCall
::
SIPCallInvite
(
eXosip_event_t
*
event
)
{
...
...
@@ -123,13 +120,6 @@ SIPCall::SIPCallInvite(eXosip_event_t *event)
return
true
;
}
/**
* newReinviteCall is called when the IP-Phone user receives a change in the call
* it's almost an newIncomingCall but we send a 200 OK
* See: 3.7. Session with re-INVITE (IP Address Change)
* @param event eXosip Event
* @return true if ok
*/
bool
SIPCall
::
SIPCallReinvite
(
eXosip_event_t
*
event
)
{
...
...
@@ -211,11 +201,6 @@ SIPCall::SIPCallReinvite(eXosip_event_t *event)
return
true
;
}
/**
* Peer answered to a call (on hold or not)
* @param event eXosip Event
* @return true if ok
*/
bool
SIPCall
::
SIPCallAnswered
(
eXosip_event_t
*
event
)
{
...
...
@@ -266,11 +251,8 @@ SIPCall::SIPCallAnswered(eXosip_event_t *event)
eXosip_unlock
();
return
true
;
}
/**
* We retreive final SDP info if they changed
* @param event eXosip Event
* @return true if ok (change / no change) or false on error
*/
bool
SIPCall
::
SIPCallAnsweredWithoutHold
(
eXosip_event_t
*
event
)
{
...
...
@@ -324,7 +306,7 @@ SIPCall::SIPCallAnsweredWithoutHold(eXosip_event_t* event)
return
true
;
}
//TODO: humm?
int
SIPCall
::
sdp_complete_message
(
sdp_message_t
*
remote_sdp
,
osip_message_t
*
msg
)
{
...
...
@@ -411,7 +393,7 @@ SIPCall::sdp_complete_message(sdp_message_t * remote_sdp, osip_message_t * msg)
}
// TODO: hum???
int
SIPCall
::
sdp_analyse_attribute
(
sdp_message_t
*
sdp
,
sdp_media_t
*
med
)
{
...
...
src/sipcall.h
View file @
77751a2f
...
...
@@ -51,7 +51,7 @@ public:
void
setTid
(
int
tid
)
{
_tid
=
tid
;
}
/**
*
Answer
incoming call
correclty
before
tell
ing the user
*
Setup
incoming call
, and verify for errors,
before
ring
ing the user
.
* @param event eXosip Event
*/
bool
SIPCallInvite
(
eXosip_event_t
*
event
);
...
...
@@ -71,6 +71,7 @@ public:
* @return true if ok
*/
bool
SIPCallAnswered
(
eXosip_event_t
*
event
);
/**
* We retreive final SDP info if they changed
* @param event eXosip Event
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment