The Wayback Machine - https://web.archive.org/web/20201111095537/https://github.com/topics/network
Skip to content
#

network

Here are 4,844 public repositories matching this topic...

sarcasticmonkeys
sarcasticmonkeys commented Sep 8, 2020

If you call fuzz on a layer that contains a PacketField, that fuzz does not recurse down into a PacketField within the layer

class Foo(Packet):
    name='Foo'
    fields_desc=[
        int64("bar"),
    ]
    def extract_padding(self, s):
        return b'', s
        
class demo(Packet):
    name="demo"
    fields_desc = [ PacketField(name="foo",default=Foo(),cls=Foo)]
inst

Improve this page

Add a description, image, and links to the network topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the network topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.