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
efda1ac4
Commit
efda1ac4
authored
Aug 23, 2010
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it clear that the stun-server property takes an IP address and not a port
parent
5c8d77c4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
agent/agent.c
agent/agent.c
+3
-3
No files found.
agent/agent.c
View file @
efda1ac4
...
@@ -283,8 +283,8 @@ nice_agent_class_init (NiceAgentClass *klass)
...
@@ -283,8 +283,8 @@ nice_agent_class_init (NiceAgentClass *klass)
g_object_class_install_property
(
gobject_class
,
PROP_STUN_SERVER
,
g_object_class_install_property
(
gobject_class
,
PROP_STUN_SERVER
,
g_param_spec_string
(
g_param_spec_string
(
"stun-server"
,
"stun-server"
,
"STUN server"
,
"STUN server
IP address
"
,
"The
STUN server used to obtain server-reflexive candidates
"
,
"The
IP address (not the hostname) of the STUN server to use
"
,
NULL
,
NULL
,
G_PARAM_READWRITE
));
G_PARAM_READWRITE
));
...
@@ -292,7 +292,7 @@ nice_agent_class_init (NiceAgentClass *klass)
...
@@ -292,7 +292,7 @@ nice_agent_class_init (NiceAgentClass *klass)
g_param_spec_uint
(
g_param_spec_uint
(
"stun-server-port"
,
"stun-server-port"
,
"STUN server port"
,
"STUN server port"
,
"
The STUN server used to obtain
server-reflexive candidates"
,
"
Port of the STUN server used to gather
server-reflexive candidates"
,
1
,
65536
,
1
,
65536
,
1
,
/* not a construct property, ignored */
1
,
/* not a construct property, ignored */
G_PARAM_READWRITE
));
G_PARAM_READWRITE
));
...
...
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