MCPcopy Create free account
hub / github.com/HexHive/NASS / FuzzParcel

Class FuzzParcel

fuzz/fuzzparcel.py:17–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15 ]
16
17class FuzzParcel(Structure):
18 _fields_ = [
19 ("code", c_uint),
20 ("nr_entries", c_uint),
21 ("buf", POINTER(c_ubyte)),
22 ("buf_size", c_uint),
23 ("index", c_uint),
24 ("entries", POINTER(POINTER(ParcelData)) * MAX_ENTRIES)
25 ]
26"""
27LIB.init_fuzzparcel.argtypes = [POINTER(c_ubyte), c_size_t]
28LIB.init_fuzzparcel.restype = POINTER(FuzzParcel)

Callers 1

deserialize_parcelFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected