Home
last modified time | relevance | path

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

/openthread-3.4.0/tests/scripts/thread-cert/
Ddtls.py220 def __init__(self, gmt_unix_time, random_bytes): argument
221 self.gmt_unix_time = gmt_unix_time
226 return (isinstance(self, type(other)) and self.gmt_unix_time == other.gmt_unix_time and
230 return struct.pack(">I", self.gmt_unix_time) + (self.random_bytes)
234 gmt_unix_time = struct.unpack(">I", data.read(4))[0]
236 return cls(gmt_unix_time, random_bytes)