MCPcopy Create free account
hub / github.com/secdev/scapy / in6_or

Function in6_or

scapy/utils6.py:598–605  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

596
597
598def 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
608def in6_and(a1, a2):

Callers 2

in6_getnsmaFunction · 0.85
in6_gethaFunction · 0.85

Calls 1

strorFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…