(self, p, pay)
| 633 | return TLS13ServerHello |
| 634 | |
| 635 | def post_build(self, p, pay): |
| 636 | if self.random_bytes is None: |
| 637 | p = p[:6] + randstring(32) + p[6 + 32:] |
| 638 | return super(TLS13ServerHello, self).post_build(p, pay) |
| 639 | |
| 640 | def tls_session_update(self, msg_str): |
| 641 | """ |
nothing calls this directly
no test coverage detected