Provides a bit to bit OR of provided addresses. They must be passed in network format. Return value is also an IPv6 address in network format.
(a1, a2)
| 596 | |
| 597 | |
| 598 | def in6_or(a1, a2): |
| 599 | # type: (bytes, bytes) -> bytes |
| 600 | """ |
| 601 | Provides a bit to bit OR of provided addresses. They must be |
| 602 | passed in network format. Return value is also an IPv6 address |
| 603 | in network format. |
| 604 | """ |
| 605 | return stror(a1, a2) |
| 606 | |
| 607 | |
| 608 | def in6_and(a1, a2): |
no test coverage detected
searching dependent graphs…