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
b5d0c1fd
Commit
b5d0c1fd
authored
Feb 23, 2009
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some warnings by removing gtk-doc comment where not needed
parent
b08c2237
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
25 additions
and
22 deletions
+25
-22
agent/address.c
agent/address.c
+0
-11
agent/agent.h
agent/agent.h
+3
-3
agent/conncheck.c
agent/conncheck.c
+1
-1
stun/stunagent.h
stun/stunagent.h
+14
-0
stun/usages/bind.h
stun/usages/bind.h
+1
-1
stun/usages/ice.h
stun/usages/ice.h
+1
-1
stun/usages/timer.c
stun/usages/timer.c
+2
-2
stun/usages/timer.h
stun/usages/timer.h
+1
-1
stun/usages/turn.h
stun/usages/turn.h
+1
-1
tests/test-fullmode.c
tests/test-fullmode.c
+1
-1
No files found.
agent/address.c
View file @
b5d0c1fd
...
...
@@ -184,11 +184,6 @@ nice_address_get_port (const NiceAddress *addr)
}
/**
* address_set_from_string ()
*
* Returns FALSE on error.
*/
NICEAPI_EXPORT
gboolean
nice_address_set_from_string
(
NiceAddress
*
addr
,
const
gchar
*
str
)
{
...
...
@@ -209,9 +204,6 @@ nice_address_set_from_string (NiceAddress *addr, const gchar *str)
}
/**
* Sets address to match socket address struct 'sin'.
*/
NICEAPI_EXPORT
void
nice_address_set_from_sockaddr
(
NiceAddress
*
addr
,
const
struct
sockaddr
*
sa
)
...
...
@@ -230,9 +222,6 @@ nice_address_set_from_sockaddr (NiceAddress *addr,
}
/**
* Copies NiceAddress to socket address struct 'sin'.
*/
NICEAPI_EXPORT
void
nice_address_copy_to_sockaddr
(
const
NiceAddress
*
addr
,
struct
sockaddr
*
sa
)
...
...
agent/agent.h
View file @
b5d0c1fd
...
...
@@ -156,7 +156,7 @@ GType nice_agent_get_type (void);
/**
* NICE_AGENT_MAX_REMOTE_CANDIDATES:
*
* A hard limit for
number for
remote candidates. This
* A hard limit for
the number of
remote candidates. This
* limit is enforced to protect against malevolent remote
* clients.
*/
...
...
@@ -175,7 +175,7 @@ GType nice_agent_get_type (void);
* @NICE_COMPONENT_STATE_LAST: Dummy state
*
* An enum representing the state of a component.
*
See #NiceAgent::component-state-changed
*
<para> See also: #NiceAgent::component-state-changed </para>
*/
typedef
enum
{
...
...
@@ -238,7 +238,7 @@ typedef enum
*
* An enum to specify which proxy type to use for relaying.
* Note that the proxies will only be used with TCP TURN relaying.
*
See #NiceAgent:proxy-type
*
<para> See also: #NiceAgent:proxy-type </para>
*/
typedef
enum
{
...
...
agent/conncheck.c
View file @
b5d0c1fd
stun/stunagent.h
View file @
b5d0c1fd
...
...
@@ -35,6 +35,20 @@
#ifndef _STUN_AGENT_H
#define _STUN_AGENT_H
/**
* SECTION:stunagent
* @short_description: STUN agent for building and validating STUN messages
* @see_also: #StunMessage
* @stability: Stable
*
* The STUN Agent allows you to create and validate STUN messages easily.
* It's main purpose is to make sure the building and validation methods used
* are compatible with the RFC you create it with. It also tracks the transaction
* ids of the requests you send, so you can validate if a STUN response you
* received should be processed by that agent or not.
*
*/
#ifdef _WIN32
#include "win32_common.h"
...
...
stun/usages/bind.h
View file @
b5d0c1fd
...
...
@@ -36,7 +36,7 @@
#ifndef STUN_BIND_H
# define STUN_BIND_H 1
/*
*
/*
* @file bind.h
* @brief STUN binding discovery
*/
...
...
stun/usages/ice.h
View file @
b5d0c1fd
...
...
@@ -36,7 +36,7 @@
#ifndef STUN_CONNCHECK_H
# define STUN_CONNCHECK_H 1
/*
*
/*
* @file ice.h
* @brief STUN/ICE connectivity checks
*/
...
...
stun/usages/timer.c
View file @
b5d0c1fd
...
...
@@ -53,7 +53,7 @@
#include <sys/types.h>
/*
*
/*
* Initial STUN timeout (milliseconds). The spec says it should be 100ms,
* but that's way too short for most types of wireless Internet access.
*/
...
...
@@ -69,7 +69,7 @@
#endif
/*
*
/*
* Clock used throughout the STUN code.
* STUN requires a monotonic 1kHz clock to operate properly.
*/
...
...
stun/usages/timer.h
View file @
b5d0c1fd
...
...
@@ -36,7 +36,7 @@
#ifndef STUN_TIMER_H
# define STUN_TIMER_H 1
/*
*
/*
* @file timer.h
* @brief STUN retransmission timer
*/
...
...
stun/usages/turn.h
View file @
b5d0c1fd
...
...
@@ -36,7 +36,7 @@
#ifndef STUN_TURN_H
# define STUN_TURN_H 1
/*
*
/*
* @file bind.h
* @brief STUN binding discovery
*/
...
...
tests/test-fullmode.c
View file @
b5d0c1fd
...
...
@@ -472,7 +472,7 @@ static int run_full_test (NiceAgent *lagent, NiceAgent *ragent, NiceAddress *bas
return
0
;
}
/*
*
/*
* Simulate the case where answer to the offer is delayed and
* some STUN connectivity checks reach the offering party
* before it gets the remote SDP information.
...
...
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