(self, pkt, pay)
| 3435 | ] |
| 3436 | |
| 3437 | def post_build(self, pkt, pay): |
| 3438 | # type: (bytes, bytes) -> bytes |
| 3439 | return ( |
| 3440 | _SMB2_post_build( |
| 3441 | self, |
| 3442 | pkt, |
| 3443 | self.OFFSET, |
| 3444 | { |
| 3445 | "Data": 2, |
| 3446 | }, |
| 3447 | ) |
| 3448 | + pay |
| 3449 | ) |
| 3450 | |
| 3451 | |
| 3452 | bind_top_down( |
nothing calls this directly
no test coverage detected