comparison src/sslconn.h @ 6720:41120df7ed94

[gaim-migrate @ 7247] Fixed documentation errors so Doxygen no longer complains. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 03 Sep 2003 05:21:04 +0000
parents 36897b9e009f
children 6c95f01aaf49
comparison
equal deleted inserted replaced
6719:3cc4d5e55a69 6720:41120df7ed94
76 * @param buffer The destination buffer. 76 * @param buffer The destination buffer.
77 * @param len The maximum number of bytes to read. 77 * @param len The maximum number of bytes to read.
78 * 78 *
79 * @return The number of bytes read. 79 * @return The number of bytes read.
80 */ 80 */
81 size_t gaim_ssl_read(GaimSslConnection *gsc, void *data, size_t len); 81 size_t gaim_ssl_read(GaimSslConnection *gsc, void *buffer, size_t len);
82 82
83 /** 83 /**
84 * Writes data to an SSL connection. 84 * Writes data to an SSL connection.
85 * 85 *
86 * @param gsc The SSL connection handle. 86 * @param gsc The SSL connection handle.
87 * @param data The data to write. 87 * @param buffer The buffer to write.
88 * @param len The length of the data to write. 88 * @param len The length of the data to write.
89 * 89 *
90 * @return The number of bytes written. 90 * @return The number of bytes written.
91 */ 91 */
92 size_t gaim_ssl_write(GaimSslConnection *gsc, const void *data, size_t len); 92 size_t gaim_ssl_write(GaimSslConnection *gsc, const void *buffer, size_t len);
93 93
94 /*@}*/ 94 /*@}*/
95 95
96 /**************************************************************************/ 96 /**************************************************************************/
97 /** @name Subsystem API */ 97 /** @name Subsystem API */