Combine a list of DNS names and a list of IP addresses.
(dns_names: Iterable[DNSName], ip_addresses: Iterable[IPAddress])
| 106 | return domains, ip_addresses |
| 107 | |
| 108 | def join(dns_names: Iterable[DNSName], ip_addresses: Iterable[IPAddress]) -> list[SAN]: |
| 109 | """Combine a list of DNS names and a list of IP addresses.""" |
| 110 | return list(dns_names) + list(ip_addresses) |
| 111 | |
| 112 | def display(sans: Iterable[SAN]) -> str: |
| 113 | """Return the list of SANs in string form, separated by comma and space.""" |
no outgoing calls