(self, pkt, pay)
| 3688 | ] |
| 3689 | |
| 3690 | def post_build(self, pkt, pay): |
| 3691 | # type: (bytes, bytes) -> bytes |
| 3692 | return ( |
| 3693 | _SMB2_post_build( |
| 3694 | self, |
| 3695 | pkt, |
| 3696 | self.OFFSET, |
| 3697 | { |
| 3698 | "Input": 24, |
| 3699 | "Output": 36, |
| 3700 | }, |
| 3701 | ) |
| 3702 | + pay |
| 3703 | ) |
| 3704 | |
| 3705 | |
| 3706 | bind_top_down( |
nothing calls this directly
no test coverage detected