Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
d15db081
Commit
d15db081
authored
Jan 14, 2019
by
Jakub Adam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
agent: Fix spelling
Errors reported by lintian -EvIL -pedantic.
parent
6b1eec06
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
agent/conncheck.c
agent/conncheck.c
+1
-1
agent/interfaces.c
agent/interfaces.c
+4
-4
stun/usages/ice.h
stun/usages/ice.h
+1
-1
No files found.
agent/conncheck.c
View file @
d15db081
...
...
@@ -4128,7 +4128,7 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream,
}
if
(
valid
!=
STUN_VALIDATION_SUCCESS
)
{
nice_debug
(
"Agent %p : STUN message is unsuccessful
l
%d, ignoring"
,
agent
,
valid
);
nice_debug
(
"Agent %p : STUN message is unsuccessful %d, ignoring"
,
agent
,
valid
);
return
FALSE
;
}
...
...
agent/interfaces.c
View file @
d15db081
...
...
@@ -143,7 +143,7 @@ nice_interfaces_get_local_interfaces (void)
struct
ifconf
ifc
;
if
((
sockfd
=
socket
(
AF_INET
,
SOCK_DGRAM
,
IPPROTO_IP
))
<
0
)
{
nice_debug
(
"error : Cannot open socket to retr
ei
ve interface list"
);
nice_debug
(
"error : Cannot open socket to retr
ie
ve interface list"
);
return
NULL
;
}
...
...
@@ -312,7 +312,7 @@ nice_interfaces_get_local_ips (gboolean include_loopback)
gchar
*
loopback
=
NULL
;
if
((
sockfd
=
socket
(
AF_INET
,
SOCK_DGRAM
,
IPPROTO_IP
))
<
0
)
{
nice_debug
(
"Error : Cannot open socket to retr
ei
ve interface list"
);
nice_debug
(
"Error : Cannot open socket to retr
ie
ve interface list"
);
return
NULL
;
}
...
...
@@ -395,7 +395,7 @@ nice_interfaces_get_ip_for_interface (gchar *interface_name)
g_strlcpy
(
ifr
.
ifr_name
,
interface_name
,
sizeof
(
ifr
.
ifr_name
));
if
((
sockfd
=
socket
(
AF_INET
,
SOCK_DGRAM
,
IPPROTO_IP
))
<
0
)
{
nice_debug
(
"Error : Cannot open socket to retr
ei
ve interface list"
);
nice_debug
(
"Error : Cannot open socket to retr
ie
ve interface list"
);
return
NULL
;
}
...
...
@@ -458,7 +458,7 @@ SOCKET nice_interfaces_get_WSA_socket ()
if ((sock = socket (AF_INET, SOCK_DGRAM, 0)) == INVALID_SOCKET) {
nice_debug ("Error : Could not open socket to retr
ei
ve interface list,"
nice_debug ("Error : Could not open socket to retr
ie
ve interface list,"
" error no : %d", WSAGetLastError ());
return INVALID_SOCKET;
}
...
...
stun/usages/ice.h
View file @
d15db081
...
...
@@ -168,7 +168,7 @@ stun_usage_ice_conncheck_create (StunAgent *agent, StunMessage *msg,
* @compatibility: The compatibility mode to use for processing the conncheck
* response
*
* Process an ICE connectivity check STUN message and retr
ei
ve the
* Process an ICE connectivity check STUN message and retr
ie
ve the
* mapped address from the message
* <para> See also stun_usage_ice_conncheck_priority() and
* stun_usage_ice_conncheck_use_candidate() </para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment