(self, pkt, pay)
| 3508 | ] |
| 3509 | |
| 3510 | def post_build(self, pkt, pay): |
| 3511 | # type: (bytes, bytes) -> bytes |
| 3512 | return ( |
| 3513 | _SMB2_post_build( |
| 3514 | self, |
| 3515 | pkt, |
| 3516 | self.OFFSET, |
| 3517 | { |
| 3518 | "Data": 2, |
| 3519 | "WriteChannelInfo": 40, |
| 3520 | }, |
| 3521 | ) |
| 3522 | + pay |
| 3523 | ) |
| 3524 | |
| 3525 | |
| 3526 | bind_top_down( |
nothing calls this directly
no test coverage detected