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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
5a21425b
Commit
5a21425b
authored
14 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git+ssh://git.sflphone.org/var/repos/sflphone/git/sflphone
parents
82d81d56
0fa17c01
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
sflphone-common/src/call.cpp
+0
-1
0 additions, 1 deletion
sflphone-common/src/call.cpp
sflphone-common/src/call.h
+1
-23
1 addition, 23 deletions
sflphone-common/src/call.h
sflphone-common/src/sip/sipvoiplink.cpp
+0
-1
0 additions, 1 deletion
sflphone-common/src/sip/sipvoiplink.cpp
with
1 addition
and
25 deletions
sflphone-common/src/call.cpp
+
0
−
1
View file @
5a21425b
...
...
@@ -36,7 +36,6 @@ Call::Call (const CallID& id, Call::CallType type)
:
_callMutex
()
,
_localIPAddress
(
""
)
,
_localAudioPort
(
0
)
,
_localExternalAudioPort
(
0
)
,
_id
(
id
)
,
_confID
(
""
)
,
_type
(
type
)
...
...
This diff is collapsed.
Click to expand it.
sflphone-common/src/call.h
+
1
−
23
View file @
5a21425b
...
...
@@ -224,22 +224,6 @@ class Call: public Recordable
_localAudioPort
=
port
;
}
/**
* Set the audio port that remote will see.
* @param port The external audio port
*/
void
setLocalExternAudioPort
(
unsigned
int
port
)
{
_localExternalAudioPort
=
port
;
}
/**
* Return the audio port seen by the remote side.
* @return unsigned int The external audio port
*/
unsigned
int
getLocalExternAudioPort
()
const
{
return
_localExternalAudioPort
;
}
/**
* Return my IP [mutex protected]
* @return std::string The local IP
...
...
@@ -262,7 +246,7 @@ class Call: public Recordable
virtual
bool
setRecording
(
void
);
pr
otec
te
d
:
pr
iva
te
:
/** Protect every attribute that can be changed by two threads */
ost
::
Mutex
_callMutex
;
...
...
@@ -274,12 +258,6 @@ class Call: public Recordable
/** Local audio port, as seen by me. */
unsigned
int
_localAudioPort
;
/** Port assigned to my machine by the NAT, as seen by remote peer (he connects there) */
unsigned
int
_localExternalAudioPort
;
private
:
/** Unique ID of the call */
CallID
_id
;
...
...
This diff is collapsed.
Click to expand it.
sflphone-common/src/sip/sipvoiplink.cpp
+
0
−
1
View file @
5a21425b
...
...
@@ -4706,7 +4706,6 @@ bool setCallAudioLocal (SIPCall* call, std::string localIP)
// Set local audio port for SIPCall(id)
call
->
setLocalIp
(
localIP
);
call
->
setLocalAudioPort
(
callLocalAudioPort
);
call
->
setLocalExternAudioPort
(
callLocalExternAudioPort
);
call
->
getLocalSDP
()
->
setPortToAllMedia
(
callLocalExternAudioPort
);
...
...
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