- Timestamp:
- Oct 7, 2008 11:15:24 AM (16 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
- Children:
- 11a08b0
- Parents:
- a97394b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd.py
ra97394b r8ecfbad 9 9 10 10 from M2Crypto import SSL 11 from M2Crypto.SSL.SSLServer import SSLServer11 from M2Crypto.SSL.SSLServer import ThreadingSSLServer 12 12 import xmlrpclib 13 13 … … 26 26 SSL.Connection.clientPostConnectionCheck = None 27 27 28 class fedd_server( SSLServer):28 class fedd_server(ThreadingSSLServer): 29 29 def __init__(self, ME, handler, ssl_ctx, impl): 30 SSLServer.__init__(self, ME, handler, ssl_ctx)30 ThreadingSSLServer.__init__(self, ME, handler, ssl_ctx) 31 31 self.impl = impl 32 32 self.soap_methods = impl.get_soap_services()
Note: See TracChangeset
for help on using the changeset viewer.