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
65c14a4c
Commit
65c14a4c
authored
Jan 18, 2010
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some comment/doc fixes
parent
32be0c07
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
agent/agent.c
agent/agent.c
+12
-4
No files found.
agent/agent.c
View file @
65c14a4c
...
...
@@ -317,7 +317,8 @@ nice_agent_class_init (NiceAgentClass *klass)
g_param_spec_uint
(
"stun-pacing-timer"
,
"STUN pacing timer"
,
"Timer 'Ta' (msecs) used in the IETF ICE specification for pacing candidate gathering and sending of connectivity checks"
,
"Timer 'Ta' (msecs) used in the IETF ICE specification for pacing "
"candidate gathering and sending of connectivity checks"
,
1
,
0xffffffff
,
NICE_AGENT_TIMER_TA_DEFAULT
,
G_PARAM_READWRITE
|
G_PARAM_CONSTRUCT_ONLY
));
...
...
@@ -454,11 +455,19 @@ nice_agent_class_init (NiceAgentClass *klass)
DEFAULT_UPNP_TIMEOUT
,
G_PARAM_READWRITE
|
G_PARAM_CONSTRUCT
));
/**
* NiceAgent:reliable:
*
* Whether the agent should use PseudoTcp to ensure a reliable transport
* of messages
*
* Since: 0.0.11
*/
g_object_class_install_property
(
gobject_class
,
PROP_RELIABLE
,
g_param_spec_boolean
(
"reliable"
,
"reliable mode"
,
"Whether agent should use PseudoTcp to ensure a reliable transport"
"Whether
the
agent should use PseudoTcp to ensure a reliable transport"
"of messages"
,
FALSE
,
G_PARAM_READWRITE
|
G_PARAM_CONSTRUCT_ONLY
));
...
...
@@ -567,7 +576,6 @@ nice_agent_class_init (NiceAgentClass *klass)
*
* This signal is fired when the agent discovers a new remote candidate.
* This can happen with peer reflexive candidates.
* <para> See also: #NiceAgent::candidates-gathering-done </para>
*/
signals
[
SIGNAL_NEW_REMOTE_CANDIDATE
]
=
g_signal_new
(
...
...
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