| Index: third_party/tlslite/tlslite/integration/tlssocketservermixin.py
|
| diff --git a/third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py b/third_party/tlslite/tlslite/integration/tlssocketservermixin.py
|
| similarity index 90%
|
| rename from third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py
|
| rename to third_party/tlslite/tlslite/integration/tlssocketservermixin.py
|
| index dd4f945dd07054e98f6394056f8efef472593ea8..8e2182f65d055b4978296d9616c61d2e7f11675e 100644
|
| --- a/third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py
|
| +++ b/third_party/tlslite/tlslite/integration/tlssocketservermixin.py
|
| @@ -1,6 +1,9 @@
|
| +# Author: Trevor Perrin
|
| +# See the LICENSE file for legal information regarding use of this file.
|
| +
|
| """TLS Lite + SocketServer."""
|
|
|
| -from tlslite.TLSConnection import TLSConnection
|
| +from tlslite.tlsconnection import TLSConnection
|
|
|
| class TLSSocketServerMixIn:
|
| """
|
| @@ -17,7 +20,7 @@ class TLSSocketServerMixIn:
|
| from SocketServer import *
|
| from BaseHTTPServer import *
|
| from SimpleHTTPServer import *
|
| - from tlslite.api import *
|
| + from tlslite import *
|
|
|
| s = open("./serverX509Cert.pem").read()
|
| x509 = X509()
|
|
|