Skip to content
  1. Feb 24, 2019
  2. Feb 23, 2019
  3. Feb 05, 2019
  4. Jan 23, 2019
  5. Jan 06, 2019
  6. Jan 05, 2019
  7. Dec 21, 2018
  8. Dec 17, 2018
  9. Dec 02, 2018
  10. Nov 10, 2018
  11. Oct 11, 2018
  12. Oct 09, 2018
  13. Sep 16, 2018
  14. Aug 18, 2018
  15. Aug 09, 2018
  16. Jul 29, 2018
    • ntome's avatar
      weboob.browser.nss: finally implement timeout support · 78e1f10f
      ntome authored and Romain Bignon's avatar Romain Bignon committed
      With NSS, unlike python sockets, the timeout should be passed on every
      recv call. But since it's implemented in C, we're forced to reimplement
      read/readinto/etc.
      Use io.BufferedRWPair and io.RawIOBase to implement some of them and
      implement the others by hand.
      78e1f10f
    • ntome's avatar
      nss: check appropriate nss db file to initialize cert db · 1b58a401
      ntome authored and Romain Bignon's avatar Romain Bignon committed
      NSS uses different filenames for its certificate database depending on
      its version (cert8.db before NSS 3.35, cert9.db after).
      This filename is checked to determine if the certificate db must be
      created, so we need to find the correct filename.
      1b58a401