- Oct 05, 2015
-
-
Pierre Lalet authored
Bind layer PPP with IPv6 (fixes #5143)
-
Pierre Lalet authored
Do not run `.post_build()` when using `.raw_packet_cache` (OK Guillaume Valadon)
-
Pierre Lalet authored
Fix IPv6 random addresses (thanks Guillaume Valadon!)
-
- Oct 04, 2015
-
-
Pierre LALET authored
-
Pierre LALET authored
-
Pierre LALET authored
-
- Oct 03, 2015
-
-
Pierre Lalet authored
added documentation for send() and sendp()
-
- Oct 02, 2015
-
-
Pierre LALET authored
Fixes #5131
-
namitsingal@gmail.com authored
added documentation for send() and sendp(), when return_packets is set to true, it will return a PacketList(). --HG-- branch : issue_5142
-
Pierre Lalet authored
send and sendp can return sent packets. Fixes #5122.
-
namitsingal@gmail.com authored
--HG-- branch : issue_5122
-
namitsingal@gmail.com authored
--HG-- branch : issue_5122
-
- Sep 25, 2015
-
-
Pierre Lalet authored
Add support for SPBM (Shortest Path Bridging)
-
- Sep 24, 2015
-
-
Pierre LALET authored
-
- Sep 21, 2015
-
-
Pierre Lalet authored
Issue #5141 fixing a bug in the checksum routine for Cisco Discovery Protocol
-
jogarock authored
--HG-- branch : issue_5141
-
jogarock authored
--HG-- branch : issue_5141
-
- Sep 17, 2015
-
-
jogarock authored
--HG-- branch : issue_5141
-
- Sep 09, 2015
-
-
Corentin Henry authored
SetGen is broken for custom list classes as illustrated by the following example: >>> packet = Ether() / IP() >>> packet_list = [packet, packet] >>> sendp(packet_list) .. Sent 2 packets. >>> # Now let's do the same with a custom class >>> class MyList(list): pass ... >>> weird_packet_list = MyList(packet_list) >>> len(weird_packet_list) 2 >>> sendp(weird_packet_list) . Sent 1 packets. >>> # Only one packet is sent instead of two. >>> # This is due to SetGen using type() instead of insinstance() to check >>> # the nature of the arguments. Indeed: >>> type(weird_packet_list) <class 'scapy.all.MyList'> >>> isinstance(weird_packet_list, list) True --HG-- extra : rebase_source : aeb2b7bd46f3cb4cf0491bbea4a38157e93ecb71
-
- Aug 31, 2015
-
-
Miles Davis authored
-
- Aug 28, 2015
-
-
Guillaume Valadon authored
Support for arm64
-
- Aug 12, 2015
-
-
Guillaume Valadon authored
--HG-- branch : Issue #5130
-
Guillaume Valadon authored
Close pcap files in .__exit__() (fixes #5126)
-
- Aug 11, 2015
-
-
Guillaume Valadon authored
IS-IS / CLNS improvements
-
Guillaume Valadon authored
Spelling fixes in documentation
-
- Aug 10, 2015
-
-
Marcel Patzlaff authored
-
Marcel Patzlaff authored
CHANGE: made IS-IS more PEP-8 compliant
-
- Jul 30, 2015
-
-
mileswdavis@gmail.com authored
-
sachetmittal authored
-
sachetmittal authored
-
- Jul 29, 2015
-
-
sachetmittal authored
-
- Jul 13, 2015
-
-
Alex Chan authored
-
- Jun 17, 2015
-
-
Pierre Lalet authored
Add missing socket.IPPROTO_IPIP
-
Pierre LALET authored
--HG-- branch : issue-5126
-
- Jun 08, 2015
-
-
Robert Gomulka authored
In bug report https://bitbucket.org/secdev/scapy/issue/5119 it is stated that Solaris has no IPPROTO_IPIP. The same holds true on windows platform. Add (monkey patch) missing attribute. Reference: http://en.wikipedia.org/wiki/List_of_IP_protocol_numbers --HG-- branch : missing_ipip
-
Robert Gomulka authored
--HG-- branch : missing_ipip
-
- May 12, 2015
-
-
Pierre Lalet authored
Issue #5116 fixed
-
Guillaume Valadon authored
Changed RTP field name from `payload` to `payload_type`
-
Guillaume Valadon authored
Fixes the _write_header() call to make it possible to write from a generator
-
Guillaume Valadon authored
HomePlugAV PLC layer
-