comparison libpurple/connection.h @ 25285:d719b9d82540

Add @since 2.6.0 tags for purple_connection_set_protocol_data() and purple_connection_get_protocol_data().
author Richard Laager <rlaager@wiktel.com>
date Fri, 31 Oct 2008 03:54:44 +0000
parents 9ded0fb57e1c
children da46097b4722
comparison
equal deleted inserted replaced
25284:985ab911753e 25285:d719b9d82540
356 /** 356 /**
357 * Sets the protocol data for a connection. 357 * Sets the protocol data for a connection.
358 * 358 *
359 * @param connection The PurpleConnection. 359 * @param connection The PurpleConnection.
360 * @param proto_data The protocol data to set for the connection. 360 * @param proto_data The protocol data to set for the connection.
361 * @since 2.6.0
361 */ 362 */
362 void purple_connection_set_protocol_data(PurpleConnection *connection, void *proto_data); 363 void purple_connection_set_protocol_data(PurpleConnection *connection, void *proto_data);
363 364
364 /** 365 /**
365 * Returns the connection state. 366 * Returns the connection state.
419 * Gets the protocol data from a connection. 420 * Gets the protocol data from a connection.
420 * 421 *
421 * @param connection The PurpleConnection. 422 * @param connection The PurpleConnection.
422 * 423 *
423 * @return The protocol data for the connection. 424 * @return The protocol data for the connection.
425 * @since 2.6.0
424 */ 426 */
425 void *purple_connection_get_protocol_data(const PurpleConnection *connection); 427 void *purple_connection_get_protocol_data(const PurpleConnection *connection);
426 428
427 /** 429 /**
428 * Updates the connection progress. 430 * Updates the connection progress.