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
b8795c9a
Commit
b8795c9a
authored
13 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
* #7246: Print SDP properly
parent
f71da8ae
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
daemon/src/sip/sdp.cpp
+14
-5
14 additions, 5 deletions
daemon/src/sip/sdp.cpp
with
14 additions
and
5 deletions
daemon/src/sip/sdp.cpp
+
14
−
5
View file @
b8795c9a
...
...
@@ -221,6 +221,16 @@ void Sdp::setLocalMediaCapabilities(const CodecOrder &selectedCodecs)
}
}
namespace
{
void
printSession
(
const
pjmedia_sdp_session
*
session
)
{
char
buffer
[
2048
];
size_t
size
=
pjmedia_sdp_print
(
session
,
buffer
,
sizeof
(
buffer
));
std
::
string
sessionStr
(
buffer
,
size
);
DEBUG
(
"%s"
,
sessionStr
.
c_str
());
}
}
int
Sdp
::
createLocalSession
(
const
CodecOrder
&
selectedCodecs
)
{
setLocalMediaCapabilities
(
selectedCodecs
);
...
...
@@ -259,9 +269,8 @@ int Sdp::createLocalSession(const CodecOrder &selectedCodecs)
if
(
!
srtpCrypto_
.
empty
())
addSdesAttribute
(
srtpCrypto_
);
char
buffer
[
1000
];
pjmedia_sdp_print
(
localSession_
,
buffer
,
sizeof
(
buffer
));
DEBUG
(
"SDP: Local SDP Session:
\n
%s"
,
buffer
);
DEBUG
(
"SDP: Local SDP Session:"
);
printSession
(
localSession_
);
return
pjmedia_sdp_validate
(
localSession_
);
}
...
...
@@ -279,8 +288,8 @@ void Sdp::receiveOffer(const pjmedia_sdp_session* remote,
{
assert
(
remote
);
char
buffer
[
1000
]
;
p
jmedia_sdp_print
(
remote
,
buffer
,
sizeof
(
buffer
)
);
DEBUG
(
"SDP: Remote SDP Session:"
)
;
p
rintSession
(
remote
);
if
(
localSession_
==
NULL
&&
createLocalSession
(
selectedCodecs
)
!=
PJ_SUCCESS
)
{
ERROR
(
"SDP: Failed to create initial offer"
);
...
...
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