Home
last modified time | relevance | path

Searched refs:lease (Results 1 – 7 of 7) sorted by relevance

/openthread-3.4.0/src/cli/
DREADME_SRP_SERVER.md15 - [lease](#lease)
36 lease
128 ### lease subsection
130 Usage: `srp server lease [<min-lease>] [<max-lease>] [<min-key-lease>] [<max-key-lease>]`
135 > srp server lease
136 min lease: 1800
137 max lease: 7200
138 min key-lease: 86400
139 max key-lease: 1209600
146 > srp server lease 1800 7200 86400 1209600
[all …]
DREADME_SRP_CLIENT.md220 - `ToRefresh`: item to be refreshed (renew lease).
233 - `removekeylease` is an optional boolean value indicating whether or not the host key lease should…
256 Get the key lease interval (in seconds).
265 Set the key lease interval.
276 Get the lease interval (in seconds).
285 Set the lease interval.
DREADME_SRP.md135 lease: 7200
136 key-lease: 1209600
/openthread-3.4.0/tests/scripts/thread-cert/
Dtest_srp_register_services_diff_lease.py97 client.srp_client_add_service('ins1', '_test._udp', 1111, lease=60, key_lease=800)
114 client.srp_client_add_service('ins2', '_test._udp', 2222, lease=30, key_lease=200)
115 client.srp_client_add_service('ins3', '_test._udp', 3333, lease=100, key_lease=1000)
200 client.srp_client_add_service('ins2', '_test._udp', 2222, lease=30, key_lease=100)
201 client.srp_client_add_service('ins3', '_test._udp', 3333, lease=30, key_lease=100)
232 client.srp_client_add_service('ins4', '_test._udp', 4444, lease=90, key_lease=800)
291 client.srp_client_add_service('ins1', '_test._udp', 1111, lease=100, key_lease=90)
330 client.srp_client_add_service('ins3', '_test._udp', 3333, lease=40)
Dnode.py1306 lease=0, argument
/openthread-3.4.0/src/core/net/
Dsrp_client.cpp977 uint32_t lease = DetermineLeaseInterval(service.GetLease(), mDefaultLease); in AppendServiceInstructions() local
978 … uint32_t keyLease = Max(DetermineLeaseInterval(service.GetKeyLease(), mDefaultKeyLease), lease); in AppendServiceInstructions()
986 OT_ASSERT((mLease == kUnspecifiedInterval) || (mLease == lease)); in AppendServiceInstructions()
987 mLease = lease; in AppendServiceInstructions()
1075 uint32_t lease = DetermineLeaseInterval(aService.GetLease(), mDefaultLease); in CanAppendService() local
1076 … uint32_t keyLease = Max(DetermineLeaseInterval(aService.GetKeyLease(), mDefaultKeyLease), lease); in CanAppendService()
1085 VerifyOrExit((mLease == kUnspecifiedInterval) || (mLease == lease)); in CanAppendService()
1087 mLease = lease; in CanAppendService()
1873 uint32_t lease = (mLease == 0) ? mDefaultLease : mLease; in DetermineTtl() local
1875 return (mTtl == kUnspecifiedInterval) ? lease : Min(mTtl, lease); in DetermineTtl()
/openthread-3.4.0/tests/toranj/cli/
Dcli.py533 lease=0, argument
537 lease, key_lease)