]> git.meshlink.io Git - meshlink/commitdiff
Fix warnings from Doxygen.
authorGuus Sliepen <guus@meshlink.io>
Sat, 26 Jul 2014 15:21:42 +0000 (17:21 +0200)
committerGuus Sliepen <guus@meshlink.io>
Sat, 26 Jul 2014 15:21:42 +0000 (17:21 +0200)
src/meshlink++.h
src/meshlink.h

index 494c6ebda8c7ac406984cae5d0a2da25e1e57a0a..a1911affbdb1d949049e343b5cae5a4d732f0391 100644 (file)
@@ -299,6 +299,7 @@ namespace meshlink {
                 *  to hand the data over to the application's thread.
                 *  The callback should also not block itself and return as quickly as possible.
                 *
+                *  @param channel   A handle for the channel.
                 *  @param cb        A pointer to the function which will be called when another node sends data to the local node.
                 */
                void set_channel_accept_cb(channel *channel, channel_accept_cb_t cb) {
@@ -317,7 +318,7 @@ namespace meshlink {
                 *
                 *  @return             A handle for the channel, or NULL in case of an error.
                 */
-               channel *channel_open(node *node, uint16_t port, channel_receive_cb_t recv, const void *data, size_t len) {
+               channel *channel_open(node *node, uint16_t port, channel_receive_cb_t cb, const void *data, size_t len) {
                        return (channel *)meshlink_channel_open(this, node, port, (meshlink_channel_receive_cb_t)recv, data, len);
                }
 
index 89bab39aba15c5fa4d7c342dfd19f19412eab5cb..b54e961e5c9adab0bf6b144e2a527ad34f558511 100644 (file)
@@ -29,6 +29,7 @@
 extern "C" {
 #endif
 
+/// The length in bytes of a signature made with meshlink_sign()
 #define MESHLINK_SIGLEN 64
 
 /// A handle for an instance of MeshLink.