(self, pkt, pay)
| 2639 | return super(SMB2_Session_Setup_Response, self).setfieldval(attr, val) |
| 2640 | |
| 2641 | def post_build(self, pkt, pay): |
| 2642 | # type: (bytes, bytes) -> bytes |
| 2643 | return ( |
| 2644 | _SMB2_post_build( |
| 2645 | self, |
| 2646 | pkt, |
| 2647 | self.OFFSET, |
| 2648 | { |
| 2649 | "Security": 4, |
| 2650 | }, |
| 2651 | ) |
| 2652 | + pay |
| 2653 | ) |
| 2654 | |
| 2655 | |
| 2656 | bind_top_down( |
nothing calls this directly
no test coverage detected