Home
last modified time | relevance | path

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

/openthread-3.6.0/src/cli/
DREADME_SRP_SERVER.md16 - [lease](#lease)
38 lease
149 ### lease subsection
151 Usage: `srp server lease [<min-lease>] [<max-lease>] [<min-key-lease>] [<max-key-lease>]`
156 > srp server lease
157 min lease: 1800
158 max lease: 7200
159 min key-lease: 86400
160 max key-lease: 1209600
167 > 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.6.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.py1318 lease=0, argument
/openthread-3.6.0/src/core/net/
Dsrp_client.cpp1034 uint32_t lease = DetermineLeaseInterval(service.GetLease(), mDefaultLease); in AppendServiceInstructions() local
1035 … uint32_t keyLease = Max(DetermineLeaseInterval(service.GetKeyLease(), mDefaultKeyLease), lease); in AppendServiceInstructions()
1043 OT_ASSERT((mLease == kUnspecifiedInterval) || (mLease == lease)); in AppendServiceInstructions()
1044 mLease = lease; in AppendServiceInstructions()
1129 uint32_t lease = DetermineLeaseInterval(aService.GetLease(), mDefaultLease); in CanAppendService() local
1130 … uint32_t keyLease = Max(DetermineLeaseInterval(aService.GetKeyLease(), mDefaultKeyLease), lease); in CanAppendService()
1139 VerifyOrExit((mLease == kUnspecifiedInterval) || (mLease == lease)); in CanAppendService()
1141 mLease = lease; in CanAppendService()
1929 uint32_t lease = (mLease == 0) ? mDefaultLease : mLease; in DetermineTtl() local
1931 return (mTtl == kUnspecifiedInterval) ? lease : Min(mTtl, lease); in DetermineTtl()
/openthread-3.6.0/tests/toranj/cli/
Dcli.py550 lease=0, argument
554 lease, key_lease)