Return the FileId attribute of pkt, accounting for compounded requests.
(self, pkt)
| 1118 | self.CompoundedHandle = handle |
| 1119 | |
| 1120 | def get_file_id(self, pkt): |
| 1121 | """ |
| 1122 | Return the FileId attribute of pkt, accounting for compounded requests. |
| 1123 | """ |
| 1124 | fid = pkt.FileId |
| 1125 | if fid == self.LAST_HANDLE: |
| 1126 | return self.CompoundedHandle |
| 1127 | return fid |
| 1128 | |
| 1129 | def lookup_folder(self, handle, filter, offset, cls): |
| 1130 | """ |
no outgoing calls
no test coverage detected