Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: third_party/tlslite/google.patch

Issue 12477: Rediff the tlslite patch (it was against wrong baseline)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/tlslite/README.google ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 --- tlslite/TLSRecordLayer.py» 2008-02-27 15:45:16.159680300 -0800 1 diff -u tlslite-0.3.8/tlslite/TLSRecordLayer.py chromium//tlslite/TLSRecordLayer .py
2 +++ tlslite_google/TLSRecordLayer.py» 2008-02-29 14:54:36.515625000 -0800 2 --- tlslite-0.3.8/tlslite/TLSRecordLayer.py» 2005-02-21 21:31:41.000000000 -0 800
3 @@ -324,8 +324,10 @@ 3 +++ chromium/tlslite/TLSRecordLayer.py» 2008-11-25 21:58:04.000000000 -0800
4 @@ -322,6 +322,12 @@
5 AlertDescription.close_notify, AlertLevel.warning)):
6 yield result
4 alert = None 7 alert = None
5 # Forcing a shutdown as WinHTTP does not seem to be 8 + # Forcing a shutdown as the OS does not seem to be
6 # responsive to the close notify. 9 + # responsive to the close notify.
7 + prevCloseSocket = self.closeSocket 10 + prevCloseSocket = self.closeSocket
8 self.closeSocket = True 11 + self.closeSocket = True
9 self._shutdown(True) 12 + self._shutdown(True)
10 + self.closeSocket = prevCloseSocket 13 + self.closeSocket = prevCloseSocket
11 while not alert: 14 while not alert:
12 for result in self._getMsg((ContentType.alert, \ 15 for result in self._getMsg((ContentType.alert, \
13 ContentType.application_data)): 16 ContentType.application_data)):
14 @@ -1124,4 +1126,3 @@
15 imac_sha.digest()).digest()
16
17 return stringToBytes(md5Str + shaStr)
18 -
OLDNEW
« no previous file with comments | « third_party/tlslite/README.google ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698