Returns True if address is the link-local all-nodes multicast address (224.0.0.1).
(str)
| 889 | |
| 890 | |
| 891 | def in4_isaddrllallnodes(str): |
| 892 | # type: (str) -> bool |
| 893 | """ |
| 894 | Returns True if address is the link-local all-nodes multicast |
| 895 | address (224.0.0.1). |
| 896 | """ |
| 897 | return (inet_pton(socket.AF_INET, "224.0.0.1") == |
| 898 | inet_pton(socket.AF_INET, str)) |
| 899 | |
| 900 | |
| 901 | def in4_getnsmac(a): |
nothing calls this directly
no test coverage detected
searching dependent graphs…