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

Side by Side Diff: third_party/tlslite/tlslite/integration/xmlrpctransport.py

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop the -B Created 6 years, 8 months 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
OLDNEW
1 """TLS Lite + xmlrpclib.""" 1 """TLS Lite + xmlrpclib."""
2 2
3 import xmlrpclib 3 import xmlrpclib
4 import httplib 4 import httplib
5 from tlslite.integration.HTTPTLSConnection import HTTPTLSConnection 5 from tlslite.integration.httptlsconnection import HTTPTLSConnection
6 from tlslite.integration.ClientHelper import ClientHelper 6 from tlslite.integration.clienthelper import ClientHelper
7 7
8 8
9 class XMLRPCTransport(xmlrpclib.Transport, ClientHelper): 9 class XMLRPCTransport(xmlrpclib.Transport, ClientHelper):
10 """Handles an HTTPS transaction to an XML-RPC server.""" 10 """Handles an HTTPS transaction to an XML-RPC server."""
11 11
12 def __init__(self, 12 def __init__(self,
13 username=None, password=None, sharedKey=None, 13 username=None, password=None, sharedKey=None,
14 certChain=None, privateKey=None, 14 certChain=None, privateKey=None,
15 cryptoID=None, protocol=None, 15 cryptoID=None, protocol=None,
16 x509Fingerprint=None, 16 x509Fingerprint=None,
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 self.sharedKey, 127 self.sharedKey,
128 self.certChain, self.privateKey, 128 self.certChain, self.privateKey,
129 self.checker.cryptoID, 129 self.checker.cryptoID,
130 self.checker.protocol, 130 self.checker.protocol,
131 self.checker.x509Fingerprint, 131 self.checker.x509Fingerprint,
132 self.checker.x509TrustList, 132 self.checker.x509TrustList,
133 self.checker.x509CommonName, 133 self.checker.x509CommonName,
134 self.settings) 134 self.settings)
135 http2 = httplib.HTTP() 135 http2 = httplib.HTTP()
136 http2._setup(http) 136 http2._setup(http)
137 return http2 137 return http2
OLDNEW
« no previous file with comments | « third_party/tlslite/tlslite/integration/tlssocketservermixin.py ('k') | third_party/tlslite/tlslite/messages.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698