(self, pkt, pay)
| 2725 | ] |
| 2726 | |
| 2727 | def post_build(self, pkt, pay): |
| 2728 | # type: (bytes, bytes) -> bytes |
| 2729 | return ( |
| 2730 | _SMB2_post_build( |
| 2731 | self, |
| 2732 | pkt, |
| 2733 | self.OFFSET, |
| 2734 | { |
| 2735 | "Path": 4, |
| 2736 | }, |
| 2737 | ) |
| 2738 | + pay |
| 2739 | ) |
| 2740 | |
| 2741 | |
| 2742 | bind_top_down( |
nothing calls this directly
no test coverage detected