| 1153 | |
| 1154 | |
| 1155 | class PNETLOGON_DELTA_GROUP(NDRPacket): |
| 1156 | ALIGNMENT = (4, 8) |
| 1157 | fields_desc = [ |
| 1158 | NDRPacketField("Name", UNICODE_STRING(), UNICODE_STRING), |
| 1159 | NDRIntField("RelativeId", 0), |
| 1160 | NDRIntField("Attributes", 0), |
| 1161 | NDRPacketField("AdminComment", UNICODE_STRING(), UNICODE_STRING), |
| 1162 | NDRIntField("SecurityInformation", 0), |
| 1163 | NDRIntField("SecuritySize", None, size_of="SecurityDescriptor"), |
| 1164 | NDRFullEmbPointerField( |
| 1165 | NDRConfStrLenField( |
| 1166 | "SecurityDescriptor", "", size_is=lambda pkt: pkt.SecuritySize |
| 1167 | ) |
| 1168 | ), |
| 1169 | NDRPacketField("DummyString1", UNICODE_STRING(), UNICODE_STRING), |
| 1170 | NDRPacketField("DummyString2", UNICODE_STRING(), UNICODE_STRING), |
| 1171 | NDRPacketField("DummyString3", UNICODE_STRING(), UNICODE_STRING), |
| 1172 | NDRPacketField("DummyString4", UNICODE_STRING(), UNICODE_STRING), |
| 1173 | NDRIntField("DummyLong1", 0), |
| 1174 | NDRIntField("DummyLong2", 0), |
| 1175 | NDRIntField("DummyLong3", 0), |
| 1176 | NDRIntField("DummyLong4", 0), |
| 1177 | ] |
| 1178 | |
| 1179 | |
| 1180 | class PNETLOGON_DELTA_RENAME_GROUP(NDRPacket): |
no test coverage detected
searching dependent graphs…