python - pyCurl checking if SSPI is enabled -
the default build of pycurl
understand not support sspi
, built against old version of libcurl ~ 7.19. have gone ahead , made own build of library.
i have installed new libcurl
, pycurl
source on machine , version information confirms has been built correctly. using windows_sspi flag.
> pycurl.version 'libcurl/7.31.0 openssl/0.9.8y zlib/1.2.8'
the libcurl version showing 7.31.0. cannot see if sspi enabled. running version info pycurl gives me.
(3, '7.31.0', 466688, 'i386-pc-win32', 2748, 'openssl/0.9.8y', 0, '1.2.8', ('dict', 'file', 'ftp', 'ftps', 'gopher', 'http', 'https', 'imap', 'imaps', 'ldap', 'pop3', 'pop3s', 'rtsp', 'smtp', 'smtps', 'telnet', 'tftp'), none, 0, none)
but still no indication of whether sspi has been enabled.
Comments
Post a Comment