Home
last modified time | relevance | path

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

/openthread-latest/tools/otci/otci/
Dtypes.py98 class Ip6Addr(ipaddress.IPv6Address): class
142 assert Ip6Addr('2001:0:0:0:0:0:0:1') == '2001::1'
143 assert repr(Ip6Addr('2001:0:0:0:0:0:0:1')) == '2001::1'
144 assert str(Ip6Addr('2001:0:0:0:0:0:0:1')) == '2001::1'
Dotci.py39 from .types import ChildId, Rloc16, Ip6Addr, ThreadState, PartitionId, DeviceMode, RouterId, Securi…
242 ip: Union[str, Ip6Addr], argument
822 config['server'] = (Ip6Addr(ip), int(port))
882 'address': Ip6Addr(address),
897 ips = [Ip6Addr(item.strip()) for item in addrs[::2]]
923 'address': Ip6Addr(address),
986 info['addresses'] = list(map(Ip6Addr, v.split(', ')))
1013 info['addresses'] = list(map(Ip6Addr, v.split(', ')))
1110 'addresses': [Ip6Addr(ip) for ip in addrs.split(', ')] if addrs else [],
1118 def srp_client_get_host_addresses(self) -> List[Ip6Addr]:
[all …]
/openthread-latest/tools/cp-caps/
Drcp_caps_test.py41 from otci.types import Ip6Addr
280 def __run_link_metrics_test_commands(self, initiator: OTCI, subject_address: Ip6Addr) -> bool: argument