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
532b3ac3
Commit
532b3ac3
authored
13 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
* 6181: remove unused API from sipcall
Just getters and setters that aren't used anywhere
parent
07132141
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sflphone-common/src/sip/sipcall.h
+5
-54
5 additions, 54 deletions
sflphone-common/src/sip/sipcall.h
with
5 additions
and
54 deletions
sflphone-common/src/sip/sipcall.h
+
5
−
54
View file @
532b3ac3
...
...
@@ -65,53 +65,11 @@ class SIPCall : public Call
* Destructor
*/
~
SIPCall
();
/**
* Call Identifier
* @return int SIP call id
*/
int
getCid
()
const
{
return
_cid
;
}
/**
* Call Identifier
* @param cid SIP call id
*/
void
setCid
(
int
cid
)
{
_cid
=
cid
;
}
/**
* Domain identifier
* @return int SIP domain id
*/
int
getDid
()
const
{
return
_did
;
}
/**
* Domain identifier
* @param did SIP domain id
*/
void
setDid
(
int
did
)
{
_did
=
did
;
}
/**
* Transaction identifier
* @return int SIP transaction id
*/
int
getTid
()
const
{
return
_tid
;
}
/**
* Transaction identifier
* @param tid SIP transaction id
* Get event subscription internal structure
*/
void
setTid
(
int
tid
)
{
_tid
=
tid
;
pjsip_evsub
*
getXferSub
(
)
{
return
_xferSub
;
}
/**
...
...
@@ -121,13 +79,6 @@ class SIPCall : public Call
_xferSub
=
sub
;
}
/**
* Get event subscription internal structure
*/
pjsip_evsub
*
getXferSub
()
{
return
_xferSub
;
}
void
setInvSession
(
pjsip_inv_session
*
inv
)
{
_invSession
=
inv
;
}
...
...
@@ -137,7 +88,7 @@ class SIPCall : public Call
}
void
replaceInvSession
(
pjsip_inv_session
*
inv
)
{
_invSession
=
inv
;
_invSession
=
inv
;
}
/**
...
...
@@ -165,7 +116,7 @@ class SIPCall : public Call
* Return the local memory pool for this call
*/
pj_pool_t
*
getMemoryPool
(
void
)
{
return
_pool
;
return
_pool
;
}
private
:
...
...
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