Skip to content
  1. Nov 27, 2017
  2. Nov 25, 2017
    • Daniel Stenberg's avatar
      ssh: remove check for a NULL pointer (!) · c79b2ca0
      Daniel Stenberg authored
      With this check present, scan-build warns that we might dereference this
      point in other places where it isn't first checked for NULL. Thus, if it
      *can* be NULL we have a problem on a few places. However, this pointer
      should not be possible to be NULL here so I remove the check and thus
      also three different scan-build warnings.
      
      Closes #2111
      c79b2ca0
  3. Nov 24, 2017
  4. Nov 23, 2017
  5. Nov 22, 2017
  6. Nov 21, 2017
  7. Nov 20, 2017
  8. Nov 18, 2017
  9. Nov 17, 2017
  10. Nov 15, 2017
  11. Nov 14, 2017
  12. Nov 13, 2017
  13. Nov 12, 2017
  14. Nov 11, 2017
  15. Nov 10, 2017
  16. Nov 09, 2017
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced with 32828cc4 · f405133a
      Daniel Stenberg authored
      f405133a
    • Luca Boccassi's avatar
      --interface: add support for Linux VRF · 32828cc4
      Luca Boccassi authored
      The --interface command (CURLOPT_INTERFACE option) already uses
      SO_BINDTODEVICE on Linux, but it tries to parse it as an interface or IP
      address first, which fails in case the user passes a VRF.
      
      Try to use the socket option immediately and parse it as a fallback
      instead.  Update the documentation to mention this feature, and that it
      requires the binary to be ran by root or with CAP_NET_RAW capabilities
      for this to work.
      
      Closes #2024
      32828cc4