ReversePadField modified to fit NDR. - If no align size is specified, use the one from the inner field - Size is calculated from the beginning of the NDR stream
| 1481 | |
| 1482 | |
| 1483 | class NDRAlign(_NDRAlign, ReversePadField): |
| 1484 | """ |
| 1485 | ReversePadField modified to fit NDR. |
| 1486 | |
| 1487 | - If no align size is specified, use the one from the inner field |
| 1488 | - Size is calculated from the beginning of the NDR stream |
| 1489 | """ |
| 1490 | |
| 1491 | def __init__(self, fld, align, padwith=None): |
| 1492 | super(NDRAlign, self).__init__(fld, align=align, padwith=padwith) |
| 1493 | |
| 1494 | |
| 1495 | class _VirtualField(Field): |
no outgoing calls
no test coverage detected
searching dependent graphs…