(self)
| 1431 | return pkt |
| 1432 | |
| 1433 | def copy(self): |
| 1434 | pkt = super(_NDRPacket, self).copy() |
| 1435 | pkt.deferred_pointers = self.deferred_pointers |
| 1436 | pkt.ndr64 = self.ndr64 |
| 1437 | pkt.ndrendian = self.ndrendian |
| 1438 | return pkt |
| 1439 | |
| 1440 | def show2(self, dump=False, indent=3, lvl="", label_lvl=""): |
| 1441 | return self.__class__( |
no outgoing calls
no test coverage detected