[mle] remove secure data request mode bit (#5560)

- Always set to 1 on transmission.
- Always ignore on reception.
This commit is contained in:
Jonathan Hui
2020-09-29 15:30:37 -07:00
committed by GitHub
parent 1f834a56c5
commit dc9b032dad
151 changed files with 732 additions and 785 deletions
@@ -47,44 +47,44 @@ MTDS = [SED1, ED1, ED2, ED3, ED4]
class Cert_5_3_4_AddressMapCache(thread_cert.TestCase):
TOPOLOGY = {
LEADER: {
'mode': 'rsdn',
'mode': 'rdn',
'panid': 0xface,
'allowlist': [DUT_ROUTER1, ED1, ED2, ED3, ED4]
},
DUT_ROUTER1: {
'mode': 'rsdn',
'mode': 'rdn',
'panid': 0xface,
'router_selection_jitter': 1,
'allowlist': [LEADER, SED1]
},
SED1: {
'is_mtd': True,
'mode': 's',
'mode': '-',
'panid': 0xface,
'timeout': 5,
'allowlist': [DUT_ROUTER1]
},
ED1: {
'is_mtd': True,
'mode': 'rsn',
'mode': 'rn',
'panid': 0xface,
'allowlist': [LEADER]
},
ED2: {
'is_mtd': True,
'mode': 'rsn',
'mode': 'rn',
'panid': 0xface,
'allowlist': [LEADER]
},
ED3: {
'is_mtd': True,
'mode': 'rsn',
'mode': 'rn',
'panid': 0xface,
'allowlist': [LEADER]
},
ED4: {
'is_mtd': True,
'mode': 'rsn',
'mode': 'rn',
'panid': 0xface,
'allowlist': [LEADER]
},