Mercurial > pidgin
view libpurple/media/candidate.h @ 29209:d510b0324721
Handle individual streams in the Fs2 backend's stream-info callback for accept
signals.
author | maiku@pidgin.im |
---|---|
date | Wed, 28 Oct 2009 19:01:33 +0000 |
parents | ec069900bf96 |
children | ad765bf47e23 |
line wrap: on
line source
/** * @file candidate.h Candidate for Media API * @ingroup core */ /* purple * * Purple is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ #ifndef _PURPLE_MEDIA_CANDIDATE_H_ #define _PURPLE_MEDIA_CANDIDATE_H_ #include "enum-types.h" #include <glib-object.h> G_BEGIN_DECLS #define PURPLE_TYPE_MEDIA_CANDIDATE (purple_media_candidate_get_type()) #define PURPLE_IS_MEDIA_CANDIDATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_CANDIDATE)) #define PURPLE_IS_MEDIA_CANDIDATE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA_CANDIDATE)) #define PURPLE_MEDIA_CANDIDATE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate)) #define PURPLE_MEDIA_CANDIDATE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate)) #define PURPLE_MEDIA_CANDIDATE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate)) /** An opaque structure representing a network candidate (IP Address and port pair). */ typedef struct _PurpleMediaCandidate PurpleMediaCandidate; /** * Gets the type of the media candidate structure. * * @return The media canditate's GType * * @since 2.6.0 */ GType purple_media_candidate_get_type(void); /** * Creates a PurpleMediaCandidate instance. * * @param foundation The foundation of the candidate. * @param component_id The component this candidate is for. * @param type The type of candidate. * @param proto The protocol this component is for. * @param ip The IP address of this component. * @param port The network port. * * @return The newly created PurpleMediaCandidate instance. * * @since 2.6.0 */ PurpleMediaCandidate *purple_media_candidate_new( const gchar *foundation, guint component_id, PurpleMediaCandidateType type, PurpleMediaNetworkProtocol proto, const gchar *ip, guint port); /** * Copies a PurpleMediaCandidate. * * @param candidate The candidate to copy. * * @return The copy of the PurpleMediaCandidate. * * @since 2.7.0 */ PurpleMediaCandidate *purple_media_candidate_copy( PurpleMediaCandidate *candidate); /** * Copies a GList of PurpleMediaCandidate and its contents. * * @param candidates The list of candidates to be copied. * * @return The copy of the GList. * * @since 2.6.0 */ GList *purple_media_candidate_list_copy(GList *candidates); /** * Frees a GList of PurpleMediaCandidate and its contents. * * @param candidates The list of candidates to be freed. * * @since 2.6.0 */ void purple_media_candidate_list_free(GList *candidates); gchar *purple_media_candidate_get_foundation(PurpleMediaCandidate *candidate); guint purple_media_candidate_get_component_id(PurpleMediaCandidate *candidate); gchar *purple_media_candidate_get_ip(PurpleMediaCandidate *candidate); guint16 purple_media_candidate_get_port(PurpleMediaCandidate *candidate); gchar *purple_media_candidate_get_base_ip(PurpleMediaCandidate *candidate); guint16 purple_media_candidate_get_base_port(PurpleMediaCandidate *candidate); PurpleMediaNetworkProtocol purple_media_candidate_get_protocol( PurpleMediaCandidate *candidate); guint32 purple_media_candidate_get_priority(PurpleMediaCandidate *candidate); PurpleMediaCandidateType purple_media_candidate_get_candidate_type( PurpleMediaCandidate *candidate); gchar *purple_media_candidate_get_username(PurpleMediaCandidate *candidate); gchar *purple_media_candidate_get_password(PurpleMediaCandidate *candidate); guint purple_media_candidate_get_ttl(PurpleMediaCandidate *candidate); G_END_DECLS #endif /* _PURPLE_MEDIA_CANDIDATE_H_ */