| 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 96%
|
| rename from third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py
|
| rename to third_party/tlslite/tlslite/integration/tlssocketservermixin.py
|
| index dd4f945dd07054e98f6394056f8efef472593ea8..afb4135f88926a215dfbe89162cc0f01c6b534ac 100644
|
| --- a/third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py
|
| +++ b/third_party/tlslite/tlslite/integration/tlssocketservermixin.py
|
| @@ -1,6 +1,6 @@
|
| """TLS Lite + SocketServer."""
|
|
|
| -from tlslite.TLSConnection import TLSConnection
|
| +from tlslite.tlsconnection import TLSConnection
|
|
|
| class TLSSocketServerMixIn:
|
| """
|
| @@ -56,4 +56,4 @@ class TLSSocketServerMixIn:
|
| #Implement this method to do some form of handshaking. Return True
|
| #if the handshake finishes properly and the request is authorized.
|
| def handshake(self, tlsConnection):
|
| - raise NotImplementedError()
|
| + raise NotImplementedError()
|
|
|