summaryrefslogtreecommitdiff
path: root/farstream
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2013-01-11 19:46:19 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2013-03-26 14:50:21 -0400
commit9676376e6c5e31fb83d205c33c1a755acd58f61e (patch)
treeceeb3ecc315dbe041e7e1c41c7da4f9f4fee76a0 /farstream
parentfdf07e579b90760f1e2cdcd1a4c4a9b3476009af (diff)
downloadfarstream-9676376e6c5e31fb83d205c33c1a755acd58f61e.tar.gz
candidate: Allow various elements to be NULL
Diffstat (limited to 'farstream')
-rw-r--r--farstream/fs-candidate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/farstream/fs-candidate.c b/farstream/fs-candidate.c
index acdc5d46..13d414ff 100644
--- a/farstream/fs-candidate.c
+++ b/farstream/fs-candidate.c
@@ -172,7 +172,7 @@ fs_candidate_list_copy (const GList *candidate_list)
* @component_id: The component this candidate is for
* @type: The type of candidate
* @proto: The protocol this component is for
- * @ip: The IP address of this component (can be NULL for local candidate to
+ * @ip: (allow-none): The IP address of this component (can be NULL for local candidate to
* mean any address)
* @port: the UDP/TCP port
*
@@ -207,17 +207,17 @@ fs_candidate_new (
* fs_candidate_new_full:
* @foundation: The foundation of the candidate
* @component_id: The component this candidate is for
- * @ip: The IP address of this component (can be NULL for local candidate to
+ * @ip: (allow-none): The IP address of this component (can be NULL for local candidate to
* mean any address)
* @port: the UDP/TCP port
- * @base_ip: IP of base in dotted format as defined in ICE-19.
+ * @base_ip: (allow-none): IP of base in dotted format as defined in ICE-19.
* @base_port: Port of base as defined in ICE-19.
* @proto: The protocol this component is for
* @priority: Value between 0 and (2^31 - 1) representing the priority
* @type: The type of candidate
- * @username: Username to use to connect to client if necessary,
+ * @username (allow-none):: Username to use to connect to client if necessary,
* NULL otherwise
- * @password: Username to use to connect to client if necessary,
+ * @password: (allow-none): Username to use to connect to client if necessary,
* NULL otherwise
* @ttl: The TTL used when sending Multicast packet (0 = auto)
*