This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David Ford (FirefighterBlu3)
Recipients David Ford (FirefighterBlu3), christian.heimes, vstinner
Date 2017-02-15.03:40:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487130053.37.0.0295393237646.issue29470@psf.upfronthosting.co.za>
In-reply-to
Content
my SNI callback is a function that chooses which SSL certificate to load and summarized is:

      6 def sni_callback(sock, servername, context):
[...]
     44     # load a specific crt/key
     45     store = crtstore[servername]
     46 
     47     context.load_cert_chain( certfile = store['certfile'],
     48                              keyfile  = store['keyfile'],
     49                              password = store['password'] )
History
Date User Action Args
2017-02-15 03:40:53David Ford (FirefighterBlu3)setrecipients: + David Ford (FirefighterBlu3), vstinner, christian.heimes
2017-02-15 03:40:53David Ford (FirefighterBlu3)setmessageid: <1487130053.37.0.0295393237646.issue29470@psf.upfronthosting.co.za>
2017-02-15 03:40:53David Ford (FirefighterBlu3)linkissue29470 messages
2017-02-15 03:40:52David Ford (FirefighterBlu3)create