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
d42dbfb6
Commit
d42dbfb6
authored
11 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
ip_utils: remove error messages that aren't errors
Change-Id: I5e5caf5aae426f3b8a0e873b0c98cad929bbb2b8 Refs: #46908
parent
fd0fd79b
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
daemon/src/ip_utils.cpp
+0
-4
0 additions, 4 deletions
daemon/src/ip_utils.cpp
with
0 additions
and
4 deletions
daemon/src/ip_utils.cpp
+
0
−
4
View file @
d42dbfb6
...
...
@@ -105,7 +105,6 @@ ip_utils::getAnyHostAddr(pj_uint16_t family)
IpAddr
ip_utils
::
getLocalAddr
(
pj_uint16_t
family
)
{
ERROR
(
"ip_utils::getLocalAddr"
);
if
(
family
==
pj_AF_UNSPEC
())
{
#if HAVE_IPV6
family
=
pj_AF_INET6
();
...
...
@@ -116,7 +115,6 @@ ip_utils::getLocalAddr(pj_uint16_t family)
IpAddr
ip_addr
=
{};
pj_status_t
status
=
pj_gethostip
(
family
,
ip_addr
.
pjPtr
());
if
(
status
==
PJ_SUCCESS
)
{
ERROR
(
"ip_utils::getLocalAddr %s"
,
ip_addr
.
toString
().
c_str
());
return
ip_addr
;
}
#if HAVE_IPV6
...
...
@@ -132,7 +130,6 @@ ip_utils::getLocalAddr(pj_uint16_t family)
IpAddr
ip_utils
::
getInterfaceAddr
(
const
std
::
string
&
interface
,
pj_uint16_t
family
)
{
ERROR
(
"ip_utils::getInterfaceAddr %s"
,
interface
.
c_str
());
if
(
interface
==
DEFAULT_INTERFACE
)
return
getLocalAddr
(
family
);
...
...
@@ -267,7 +264,6 @@ IpAddr::isLoopback() const
bool
IpAddr
::
isPrivate
()
const
{
ERROR
(
"IpAddr::isPrivate: %s"
,
toString
().
c_str
());
if
(
isLoopback
())
{
ERROR
(
"IpAddr::isPrivate: %s LOOPBACK"
,
toString
().
c_str
());
return
true
;
...
...
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