|
43 | 43 | #include <openthread/error.h> |
44 | 44 | #include <openthread/instance.h> |
45 | 45 | #include <openthread/ip6.h> |
46 | | -#include <openthread/netdata.h> |
47 | 46 |
|
48 | 47 | #ifdef __cplusplus |
49 | 48 | extern "C" { |
@@ -175,17 +174,6 @@ uint8_t otBackboneRouterGetRegistrationJitter(otInstance *aInstance); |
175 | 174 | */ |
176 | 175 | void otBackboneRouterSetRegistrationJitter(otInstance *aInstance, uint8_t aJitter); |
177 | 176 |
|
178 | | -/** |
179 | | - * Gets the local Domain Prefix configuration. |
180 | | - * |
181 | | - * @param[in] aInstance A pointer to an OpenThread instance. |
182 | | - * @param[out] aConfig A pointer to the Domain Prefix configuration. |
183 | | - * |
184 | | - * @retval OT_ERROR_NONE Successfully got the Domain Prefix configuration. |
185 | | - * @retval OT_ERROR_NOT_FOUND No Domain Prefix was configured. |
186 | | - */ |
187 | | -otError otBackboneRouterGetDomainPrefix(otInstance *aInstance, otBorderRouterConfig *aConfig); |
188 | | - |
189 | 177 | /** |
190 | 178 | * Configures the response status for the next Multicast Listener Registration. |
191 | 179 | * |
@@ -300,37 +288,6 @@ otError otBackboneRouterMulticastListenerGetNext(otInstance |
300 | 288 | otBackboneRouterMulticastListenerIterator *aIterator, |
301 | 289 | otBackboneRouterMulticastListenerInfo *aListenerInfo); |
302 | 290 |
|
303 | | -/** |
304 | | - * Represents the Domain Prefix events. |
305 | | - */ |
306 | | -typedef enum |
307 | | -{ |
308 | | - OT_BACKBONE_ROUTER_DOMAIN_PREFIX_ADDED = 0, ///< Domain Prefix was added. |
309 | | - OT_BACKBONE_ROUTER_DOMAIN_PREFIX_REMOVED = 1, ///< Domain Prefix was removed. |
310 | | - OT_BACKBONE_ROUTER_DOMAIN_PREFIX_CHANGED = 2, ///< Domain Prefix was changed. |
311 | | -} otBackboneRouterDomainPrefixEvent; |
312 | | - |
313 | | -/** |
314 | | - * Pointer is called whenever the Domain Prefix changed. |
315 | | - * |
316 | | - * @param[in] aContext The user context pointer. |
317 | | - * @param[in] aEvent The Domain Prefix event. |
318 | | - * @param[in] aDomainPrefix The new Domain Prefix if added or changed, NULL otherwise. |
319 | | - */ |
320 | | -typedef void (*otBackboneRouterDomainPrefixCallback)(void *aContext, |
321 | | - otBackboneRouterDomainPrefixEvent aEvent, |
322 | | - const otIp6Prefix *aDomainPrefix); |
323 | | -/** |
324 | | - * Sets the Backbone Router Domain Prefix callback. |
325 | | - * |
326 | | - * @param[in] aInstance A pointer to an OpenThread instance. |
327 | | - * @param[in] aCallback A pointer to the Domain Prefix callback. |
328 | | - * @param[in] aContext A user context pointer. |
329 | | - */ |
330 | | -void otBackboneRouterSetDomainPrefixCallback(otInstance *aInstance, |
331 | | - otBackboneRouterDomainPrefixCallback aCallback, |
332 | | - void *aContext); |
333 | | - |
334 | 291 | /** |
335 | 292 | * @} |
336 | 293 | */ |
|
0 commit comments