(self, p, pay)
| 533 | return super(TLSServerHello, self).build(*args, **kargs) |
| 534 | |
| 535 | def post_build(self, p, pay): |
| 536 | if self.random_bytes is None: |
| 537 | p = p[:10] + randstring(28) + p[10 + 28:] |
| 538 | return super(TLSServerHello, self).post_build(p, pay) |
| 539 | |
| 540 | def tls_session_update(self, msg_str): |
| 541 | """ |
nothing calls this directly
no test coverage detected