(self, pkt, pay)
| 2571 | ] |
| 2572 | |
| 2573 | def post_build(self, pkt, pay): |
| 2574 | # type: (bytes, bytes) -> bytes |
| 2575 | return ( |
| 2576 | _SMB2_post_build( |
| 2577 | self, |
| 2578 | pkt, |
| 2579 | self.OFFSET, |
| 2580 | { |
| 2581 | "SecurityBlob": 12, |
| 2582 | }, |
| 2583 | ) |
| 2584 | + pay |
| 2585 | ) |
| 2586 | |
| 2587 | |
| 2588 | bind_top_down( |
nothing calls this directly
no test coverage detected