MCPcopy Create free account
hub / github.com/RedTeamPentesting/wspcoerce / CColumnGroupArray

Class CColumnGroupArray

wspcoerce/packets.py:386–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384
385@dataclass
386class CColumnGroupArray:
387 aGroupArray: List[CColumnGroup] = field(default_factory=list)
388
389 def to_bytes(self, buffer: bytearray):
390 buffer.extend(struct.pack("<I", len(self.aGroupArray)))
391 for group in self.aGroupArray:
392 group.to_bytes(buffer)
393
394
395# Only the necessary strcuts are included for coercion

Callers 1

_get_body_bytesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected