(self, pkt, pay)
| 3940 | ] |
| 3941 | |
| 3942 | def post_build(self, pkt, pay): |
| 3943 | # type: (bytes, bytes) -> bytes |
| 3944 | return ( |
| 3945 | _SMB2_post_build( |
| 3946 | self, |
| 3947 | pkt, |
| 3948 | self.OFFSET, |
| 3949 | { |
| 3950 | "FileName": 24, |
| 3951 | }, |
| 3952 | ) |
| 3953 | + pay |
| 3954 | ) |
| 3955 | |
| 3956 | |
| 3957 | bind_top_down( |
nothing calls this directly
no test coverage detected