(self, pkt, pay)
| 3271 | ] |
| 3272 | |
| 3273 | def post_build(self, pkt, pay): |
| 3274 | # type: (bytes, bytes) -> bytes |
| 3275 | return ( |
| 3276 | _SMB2_post_build( |
| 3277 | self, |
| 3278 | pkt, |
| 3279 | self.OFFSET, |
| 3280 | { |
| 3281 | "CreateContexts": 80, |
| 3282 | }, |
| 3283 | ) |
| 3284 | + pay |
| 3285 | ) |
| 3286 | |
| 3287 | |
| 3288 | bind_top_down(SMB2_Header, SMB2_Create_Response, Command=0x0005, Flags=1) |
nothing calls this directly
no test coverage detected