Have router make two separate attempts to reconnect to current partition. (#1276)

This commit is contained in:
Jonathan Hui
2017-02-09 11:05:35 -08:00
committed by GitHub
parent d50d62ca5b
commit efc4599d62
15 changed files with 50 additions and 40 deletions
+3 -2
View File
@@ -691,8 +691,9 @@ typedef struct otExternalRouteConfig
typedef enum otMleAttachFilter
{
kMleAttachAnyPartition = 0, ///< Attach to any Thread partition.
kMleAttachSamePartition = 1, ///< Attach to the same Thread partition.
kMleAttachBetterPartition = 2, ///< Attach to a better (i.e. higher weight/partition id) Thread partition.
kMleAttachSamePartition1 = 1, ///< Attach to the same Thread partition (attempt 1).
kMleAttachSamePartition2 = 2, ///< Attach to the same Thread partition (attempt 2).
kMleAttachBetterPartition = 3, ///< Attach to a better (i.e. higher weight/partition id) Thread partition.
} otMleAttachFilter;
/**