annotate libpurple/media/candidate.h @ 32672:3828a61c44da

A boring and large patch so I can merge heads.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Fri, 23 Dec 2011 08:21:58 +0000
parents ad765bf47e23
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
1 /**
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
2 * @file candidate.h Candidate for Media API
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
3 * @ingroup core
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
4 */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
5
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
6 /* purple
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
7 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
8 * Purple is the legal property of its developers, whose names are too numerous
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
9 * to list here. Please refer to the COPYRIGHT file distributed with this
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
10 * source distribution.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
11 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
12 * This program is free software; you can redistribute it and/or modify
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
13 * it under the terms of the GNU General Public License as published by
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
14 * the Free Software Foundation; either version 2 of the License, or
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
15 * (at your option) any later version.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
16 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
17 * This program is distributed in the hope that it will be useful,
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
20 * GNU General Public License for more details.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
21 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
22 * You should have received a copy of the GNU General Public License
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
23 * along with this program; if not, write to the Free Software
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
25 */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
26
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
27 #ifndef _PURPLE_MEDIA_CANDIDATE_H_
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
28 #define _PURPLE_MEDIA_CANDIDATE_H_
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
29
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
30 #include "enum-types.h"
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
31
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
32 #include <glib-object.h>
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
33
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
34 G_BEGIN_DECLS
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
35
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
36 #define PURPLE_TYPE_MEDIA_CANDIDATE (purple_media_candidate_get_type())
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
37 #define PURPLE_IS_MEDIA_CANDIDATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_CANDIDATE))
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
38 #define PURPLE_IS_MEDIA_CANDIDATE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA_CANDIDATE))
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
39 #define PURPLE_MEDIA_CANDIDATE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate))
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
40 #define PURPLE_MEDIA_CANDIDATE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate))
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
41 #define PURPLE_MEDIA_CANDIDATE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate))
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
42
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
43 /** An opaque structure representing a network candidate (IP Address and port pair). */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
44 typedef struct _PurpleMediaCandidate PurpleMediaCandidate;
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
45
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
46 /**
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
47 * Gets the type of the media candidate structure.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
48 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
49 * @return The media canditate's GType
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
50 */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
51 GType purple_media_candidate_get_type(void);
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
52
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
53 /**
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
54 * Creates a PurpleMediaCandidate instance.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
55 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
56 * @param foundation The foundation of the candidate.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
57 * @param component_id The component this candidate is for.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
58 * @param type The type of candidate.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
59 * @param proto The protocol this component is for.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
60 * @param ip The IP address of this component.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
61 * @param port The network port.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
62 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
63 * @return The newly created PurpleMediaCandidate instance.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
64 */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
65 PurpleMediaCandidate *purple_media_candidate_new(
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
66 const gchar *foundation, guint component_id,
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
67 PurpleMediaCandidateType type,
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
68 PurpleMediaNetworkProtocol proto,
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
69 const gchar *ip, guint port);
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
70
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
71 /**
29164
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
72 * Copies a PurpleMediaCandidate.
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
73 *
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
74 * @param candidate The candidate to copy.
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
75 *
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
76 * @return The copy of the PurpleMediaCandidate.
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
77 */
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
78 PurpleMediaCandidate *purple_media_candidate_copy(
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
79 PurpleMediaCandidate *candidate);
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
80
ec069900bf96 Add purple_media_candidate_copy to the public API.
maiku@pidgin.im
parents: 29142
diff changeset
81 /**
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
82 * Copies a GList of PurpleMediaCandidate and its contents.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
83 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
84 * @param candidates The list of candidates to be copied.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
85 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
86 * @return The copy of the GList.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
87 */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
88 GList *purple_media_candidate_list_copy(GList *candidates);
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
89
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
90 /**
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
91 * Frees a GList of PurpleMediaCandidate and its contents.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
92 *
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
93 * @param candidates The list of candidates to be freed.
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
94 */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
95 void purple_media_candidate_list_free(GList *candidates);
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
96
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
97 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
98 * Gets the foundation (identifier) from the candidate.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
99 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
100 * @param candidate The candidate to get the foundation from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
101 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
102 * @return The foundation.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
103 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
104 gchar *purple_media_candidate_get_foundation(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
105
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
106 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
107 * Gets the component id (rtp or rtcp)
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
108 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
109 * @param candidate The candidate to get the compnent id from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
110 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
111 * @return The component id.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
112 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
113 guint purple_media_candidate_get_component_id(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
114
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
115 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
116 * Gets the IP address.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
117 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
118 * @param candidate The candidate to get the IP address from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
119 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
120 * @return The IP address.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
121 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
122 gchar *purple_media_candidate_get_ip(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
123
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
124 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
125 * Gets the port.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
126 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
127 * @param candidate The candidate to get the port from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
128 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
129 * @return The port.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
130 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
131 guint16 purple_media_candidate_get_port(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
132
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
133 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
134 * Gets the base (internal) IP address.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
135 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
136 * This can be NULL.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
137 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
138 * @param candidate The candidate to get the base IP address from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
139 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
140 * @return The base IP address.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
141 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
142 gchar *purple_media_candidate_get_base_ip(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
143
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
144 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
145 * Gets the base (internal) port.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
146 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
147 * Invalid if the base IP is NULL.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
148 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
149 * @param candidate The candidate to get the base port.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
150 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
151 * @return The base port.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
152 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
153 guint16 purple_media_candidate_get_base_port(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
154
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
155 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
156 * Gets the protocol (TCP or UDP).
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
157 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
158 * @param candidate The candidate to get the protocol from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
159 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
160 * @return The protocol.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
161 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
162 PurpleMediaNetworkProtocol purple_media_candidate_get_protocol(
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
163 PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
164
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
165 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
166 * Gets the priority.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
167 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
168 * @param candidate The candidate to get the priority from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
169 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
170 * @return The priority.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
171 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
172 guint32 purple_media_candidate_get_priority(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
173
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
174 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
175 * Gets the candidate type.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
176 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
177 * @param candidate The candidate to get the candidate type from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
178 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
179 * @return The candidate type.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
180 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
181 PurpleMediaCandidateType purple_media_candidate_get_candidate_type(
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
182 PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
183
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
184 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
185 * Gets the username.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
186 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
187 * This can be NULL. It depends on the transmission type.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
188 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
189 * @param The candidate to get the username from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
190 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
191 * @return The username.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
192 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
193 gchar *purple_media_candidate_get_username(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
194
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
195 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
196 * Gets the password.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
197 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
198 * This can be NULL. It depends on the transmission type.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
199 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
200 * @param The candidate to get the password from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
201 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
202 * @return The password.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
203 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
204 gchar *purple_media_candidate_get_password(PurpleMediaCandidate *candidate);
29242
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
205
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
206 /**
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
207 * Gets the TTL.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
208 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
209 * @param The candidate to get the TTL from.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
210 *
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
211 * @return The TTL.
ad765bf47e23 Document the remaining functions.
maiku@pidgin.im
parents: 29164
diff changeset
212 */
29142
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
213 guint purple_media_candidate_get_ttl(PurpleMediaCandidate *candidate);
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
214
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
215 G_END_DECLS
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
216
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
217 #endif /* _PURPLE_MEDIA_CANDIDATE_H_ */
f585e10f156b Split out PurpleMediaCandidate into its own file.
maiku@pidgin.im
parents:
diff changeset
218