From 35ddd1a2000968e273e98cb7c6f020f2c91194f5 Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Thu, 13 Oct 2016 12:54:37 -0700 Subject: [PATCH] openthread.h: Update the method names in comments/documentation (#807) --- include/openthread.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/openthread.h b/include/openthread.h index eb81d37c9..14bd1c738 100644 --- a/include/openthread.h +++ b/include/openthread.h @@ -2131,16 +2131,16 @@ typedef void (*otReceiveIp6DatagramCallback)(otMessage aMessage, void *aContext) /** * This function registers a callback to provide received IPv6 datagrams. * - * By default, this callback does not pass Thread control traffic. See otSetReceiveIp6FilterEnabled() to change - * the Thread control traffic filter setting. + * By default, this callback does not pass Thread control traffic. See otSetReceiveIp6DatagramFilterEnabled() to + * change the Thread control traffic filter setting. * * @param[in] aInstance A pointer to an OpenThread instance. * @param[in] aCallback A pointer to a function that is called when an IPv6 datagram is received or * NULL to disable the callback. * @param[in] aCallbackContext A pointer to application-specific context. * - * @sa otIsReceiveIp6FilterEnabled - * @sa otSetReceiveIp6FilterEnabled + * @sa otIsReceiveIp6DatagramFilterEnabled + * @sa otSetReceiveIp6DatagramFilterEnabled * */ void otSetReceiveIp6DatagramCallback(otInstance *aInstance, otReceiveIp6DatagramCallback aCallback, @@ -2154,8 +2154,8 @@ void otSetReceiveIp6DatagramCallback(otInstance *aInstance, otReceiveIp6Datagram * * @returns TRUE if Thread control traffic is filtered out, FALSE otherwise. * - * @sa otSetReceiveDatagramCallback - * @sa otSetReceiveIp6FilterEnabled + * @sa otSetReceiveIp6DatagramCallback + * @sa otSetReceiveIp6DatagramFilterEnabled * */ bool otIsReceiveIp6DatagramFilterEnabled(otInstance *aInstance); @@ -2167,8 +2167,8 @@ bool otIsReceiveIp6DatagramFilterEnabled(otInstance *aInstance); * @param[in] aInstance A pointer to an OpenThread instance. * @param[in] aEnabled TRUE if Thread control traffic is filtered out, FALSE otherwise. * - * @sa otSetReceiveDatagramCallback - * @sa otIsReceiveIp6FilterEnabled + * @sa otSetReceiveIp6DatagramCallback + * @sa otIsReceiveIp6DatagramFilterEnabled * */ void otSetReceiveIp6DatagramFilterEnabled(otInstance *aInstance, bool aEnabled);