]> git.meshlink.io Git - meshlink/commitdiff
Fix declaration of meshlink_set_channel_receive_cb().
authorGuus Sliepen <guus@meshlink.io>
Sat, 26 Jul 2014 12:41:27 +0000 (14:41 +0200)
committerGuus Sliepen <guus@meshlink.io>
Sat, 26 Jul 2014 12:41:27 +0000 (14:41 +0200)
src/meshlink.h

index 9db3c3d828f739b817651e57d5f52041e6a64a86..7bb0da9997955277d7ab4b7707425ffca46d401e 100644 (file)
@@ -370,7 +370,7 @@ extern void meshlink_set_channel_accept_cb(meshlink_handle_t *mesh, meshlink_cha
  *  @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.
  */
-extern void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_receive_cb_t cb);
+extern void meshlink_set_channel_receive_cb(meshlink_handle_t *mesh, meshlink_channel_t *channel, meshlink_channel_receive_cb_t cb);
 
 /// Open a reliable stream channel to another node.
 /** This function is called whenever a remote node wants to open a channel to the local node.