Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
77751a2f
Commit
77751a2f
authored
17 years ago
by
Alexandre Bourget
Browse files
Options
Downloads
Patches
Plain Diff
Fix comments.
parent
20347c80
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sipcall.cpp
+5
-23
5 additions, 23 deletions
src/sipcall.cpp
src/sipcall.h
+2
-1
2 additions, 1 deletion
src/sipcall.h
with
7 additions
and
24 deletions
src/sipcall.cpp
+
5
−
23
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
)
{
...
...
This diff is collapsed.
Click to expand it.
src/sipcall.h
+
2
−
1
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment