(self, pkt, pay)
| 3887 | ) |
| 3888 | |
| 3889 | def post_build(self, pkt, pay): |
| 3890 | # type: (bytes, bytes) -> bytes |
| 3891 | return ( |
| 3892 | _SMB2_post_build( |
| 3893 | self, |
| 3894 | pkt, |
| 3895 | self.OFFSET, |
| 3896 | { |
| 3897 | "Input": 24, |
| 3898 | "Output": 32, |
| 3899 | }, |
| 3900 | ) |
| 3901 | + pay |
| 3902 | ) |
| 3903 | |
| 3904 | |
| 3905 | bind_top_down( |
nothing calls this directly
no test coverage detected