| OLD | NEW |
| 1 diff --git a/third_party/tlslite/tlslite/tlsconnection.py b/third_party/tlslite/
tlslite/tlsconnection.py | 1 diff --git a/third_party/tlslite/tlslite/tlsconnection.py b/third_party/tlslite/
tlslite/tlsconnection.py |
| 2 index 996b7e9..06aa0c9 100644 | 2 index 4f3ba1c..cb743fe 100644 |
| 3 --- a/third_party/tlslite/tlslite/tlsconnection.py | 3 --- a/third_party/tlslite/tlslite/tlsconnection.py |
| 4 +++ b/third_party/tlslite/tlslite/tlsconnection.py | 4 +++ b/third_party/tlslite/tlslite/tlsconnection.py |
| 5 @@ -1261,6 +1261,9 @@ class TLSConnection(TLSRecordLayer): | 5 @@ -1269,6 +1269,9 @@ class TLSConnection(TLSRecordLayer): |
| 6 return # Handshake was resumed, we're done | 6 return # Handshake was resumed, we're done |
| 7 else: break | 7 else: break |
| 8 (clientHello, cipherSuite) = result | 8 (clientHello, cipherSuite) = result |
| 9 + | 9 + |
| 10 + # Save the ClientHello for external code to query. | 10 + # Save the ClientHello for external code to query. |
| 11 + self.clientHello = clientHello | 11 + self.clientHello = clientHello |
| 12 | 12 |
| 13 #If not a resumption... | 13 #If not a resumption... |
| 14 | 14 |
| OLD | NEW |