History log of /external/scapy/scapy/contrib/isis.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
c4b73fa9d55410e090d86a780473697d0c001de0 25-Dec-2017 Pierre LALET <pierre.lalet@cea.fr> Python 3: fix isis contrib for Python < 3.5
/external/scapy/scapy/contrib/isis.py
6f6eca2acc783873941a85f7729d285054081702 25-Oct-2017 gpotter2 <gabriel@potter.fr> Python 3: fix remaining contrib modules
/external/scapy/scapy/contrib/isis.py
22a55b62eb35e8611fe03b99e4ff4f257a97b5d1 27-Jun-2017 gpotter2 <gabriel@potter.fr> [Python 2 to 3] Main six fixes (#630)

* Apply six fixes
* Include six directly in scapy
* Ignore six library in coverage
* Moved winpcapy to modules
* Iterator and list fixes
/external/scapy/scapy/contrib/isis.py
57fd688097ef5b52c0580cd1b42ce6c605aeb6c0 31-May-2017 Pierre Lalet <pierre@droids-corp.org> Merge pull request #628 from gpotter2/py3-step2-1

[Python 2 to 3] Exceptions, loops, isinstance and haskey
d51edef8530fe1e944f13eb65ef863c2d7f04b1d 25-Apr-2017 gpotter2 <gabriel@potter.fr> Python 2 to 3: Exceptions, loops, isinstance and haskey
/external/scapy/scapy/contrib/isis.py
3e3cb22b2c55d29ed5ffc780c77feda2f7ef4564 13-May-2017 gpotter2 <gabriel@potter.fr> Update/Add missing licences/status flags
/external/scapy/scapy/contrib/isis.py
2a7ad0d13aaaa2a5358f82c67877856863a30d61 21-Mar-2017 gpotter2 <gabriel@potter.fr> Run auto parser
/external/scapy/scapy/contrib/isis.py
f912538b7959a68ad83e7f18eee57cd5a8aef7df 16-Dec-2016 mkaliszan <mkaliszan@benocs.com> [isis.py] Add support for some SubTLVs (#305)

* [isis.py] Add support for some SubTLVs
* [isis.py, isis.uts] Fix, (unit-)test and extend SubTLVs support
/external/scapy/scapy/contrib/isis.py
ed95a6a3cea25583d339e564b7c93bdbcbbf9483 15-Nov-2016 Guillaume Valadon <guillaume.valadon@ssi.gouv.fr> Python files spell checked
/external/scapy/scapy/contrib/isis.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/isis.py
b529c0155f12309f4ac59d7a6e93cb5d630132c5 12-May-2016 Rémy Léone <remy.leone@gmail.com> Default argument shouldn't be mutable
/external/scapy/scapy/contrib/isis.py
438fd87ace9fe15d80fe146faf8814deb7a0fe66 25-Jan-2016 Guillaume Valadon <guillaume@valadon.net> Merge pull request #11 from p-l-/feature-slots

Use __slots__ for some Scapy objects
4cca8708a5fdc52e592aa2661ab7c4b06fd539b3 17-Jan-2016 Pierre LALET <pierre.lalet@cea.fr> Remove unneeded lists (primarily range() calls)
/external/scapy/scapy/contrib/isis.py
f295d18171d7a6091f5de9c4d80ea4beec2f2f34 15-Jan-2016 Pierre LALET <pierre.lalet@cea.fr> Fix fields for contrib/ tests

TODO: the fields from scapy/fields.py fixed here probably need tests
in test/.
/external/scapy/scapy/contrib/isis.py
3bc49afb73b634ec6cd3dc25b9c7f27b84ad2d9e 10-Aug-2015 Marcel Patzlaff <mpatzlaff@benocs.com> CHANGE: removed dedicated CLNS layer and replaced it with a better usable solution
CHANGE: made IS-IS more PEP-8 compliant
/external/scapy/scapy/contrib/isis.py
e2e44b9fcbe82ae7ecf36f3136163d1680bec8c0 22-Dec-2014 Marcel Patzlaff <mpatzlaff@benocs.com> [arch.py]
FIX: get_if_addr6() did return a wrong value
CHANGE: get_if_raw_addr6() bases now on get_if_addr6()

[ospf.py]
FIX: re-inserted default values of IPv6 prefixes

[isis.py]
FIX: removed unnecessary length check

[fields.py]
NEW: added some comments to the IP prefix formats
FIX: unified machine representation of IP prefixes
/external/scapy/scapy/contrib/isis.py
a6686661ab907c99fe80c8492cad0d2042bc64c4 21-Dec-2014 Marcel Patzlaff <mpatzlaff@benocs.com> [isis.py]
FIX: using std.decode("hex") for hex value conversion

[automaton.py]
FIX: code style for assignments
/external/scapy/scapy/contrib/isis.py
eff8e6366fb702b57c3fe0adc36da230436d4396 18-Dec-2014 Marcel Patzlaff <mpatzlaff@benocs.com> NEW: IS-IS dissector
NEW: CLNS layer (to register IS-IS for example)
/external/scapy/scapy/contrib/isis.py