History log of /external/scapy/scapy/contrib/igmpv3.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
4ad2bf2a6c93fc4d571029be8b59214c5e603ce2 18-Dec-2017 AStotal <astotal@gmail.com> Fixed fields in IGMPv3 (#952)

* Reserved field must have 2 bytes long in IGMPv3mr

* Bind default values for dst ipaddr and mrcode in membership reports

* Use valid packets in tests
/external/scapy/scapy/contrib/igmpv3.py
f2f3cc0424d2c7550bfd030d5a361023c00786ac 17-Dec-2017 gpotter2 <gabriel@potter.fr> Python 3 fixes: TACACS, IGMPv3, PPI tests (#961)

* Python 3 fixes: TACACS, IGMPv3, PPI tests

* Don't crash on empty key

* 3 breaking random tests so that coverage pass

* Minor fixes
/external/scapy/scapy/contrib/igmpv3.py
799c7565beffa1f80395ad5d77d36085535bd8fb 13-Nov-2017 gpotter2 <gabriel@potter.fr> [coverage] IGMP tests + fixes (#943)
/external/scapy/scapy/contrib/igmpv3.py
967a1c5f6da9e9ad7f74c0b250cacef93a9d89a9 09-Sep-2017 gpotter2 <gabriel@potter.fr> Rework of IGMPv3 + fix all TODOs
/external/scapy/scapy/contrib/igmpv3.py
b72a0b59db7b6fa0726ffa22da3b88679bffe69c 27-Jun-2017 gpotter2 <gabriel@potter.fr> Auto-Fix: refactor print() function
/external/scapy/scapy/contrib/igmpv3.py
0a6a04119706e7a9486d637fd25ca80878ebc86d 21-May-2017 gpotter2 <gabriel@potter.fr> Mark contrib modules as loads
/external/scapy/scapy/contrib/igmpv3.py
3e3cb22b2c55d29ed5ffc780c77feda2f7ef4564 13-May-2017 gpotter2 <gabriel@potter.fr> Update/Add missing licences/status flags
/external/scapy/scapy/contrib/igmpv3.py
ed95a6a3cea25583d339e564b7c93bdbcbbf9483 15-Nov-2016 Guillaume Valadon <guillaume.valadon@ssi.gouv.fr> Python files spell checked
/external/scapy/scapy/contrib/igmpv3.py
6057906368d55634d11e1d19a5cca1f127595b11 01-Jun-2016 Robin Jarry <robin.jarry@6wind.com> Fix individual modules import

When using scapy as a third party library, we do not "benefit" from the
loading routine that puts all symbols in the __builtin__ namespace. This
implies that all modules must be "importable" without any errors for
undefined symbols.

This patch fixes importing every scapy module individually. Some
circular imports were fixed (between inet6 and dhcp6).

Most errors were detected by using pylint with the right configuration
(scapy produces a *lot* of errors). Other errors were detected with the
following shell script:

export PYTHONPATH=".:$PYTHONPATH"
for f in $(find scapy/ -name '*.py'); do
f=${f%/__init__.py}
module=$(echo ${f%.py} | sed 's,/,.,g')
python -c "import $module; print $module"
done

Also, replace all implicit relative imports by absolute imports to avoid
surprises with some python versions.

Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
/external/scapy/scapy/contrib/igmpv3.py
763ea52e2c2fa8a536c8b8959f54ca875b8f3122 03-May-2016 dawnworld <qiylei@gmail.com> [IGMP V3] fix number of source address
/external/scapy/scapy/contrib/igmpv3.py
eec78d29da9b742fc49d07b8eac1e66bfb17f580 22-Jan-2016 Pierre LALET <pierre.lalet@cea.fr> Fix layer binding in IGMPv3 (contrib)
/external/scapy/scapy/contrib/igmpv3.py
5e2a4c735bd6211f5473df2b51e0558d318eeec6 02-Apr-2011 Phil <phil@secdev.org> Fix imports of contrib modules
/external/scapy/scapy/contrib/igmpv3.py
ebc9d8221954c1955bd06ecd60035df191c1bb13 28-Feb-2011 Phil <phil@secdev.org> Added contrib IGMPv1/v2/v3 (ticket #31)
/external/scapy/scapy/contrib/igmpv3.py