1. 02 6月, 2015 1 次提交
  2. 26 5月, 2015 1 次提交
  3. 14 5月, 2015 1 次提交
  4. 11 5月, 2015 1 次提交
  5. 06 5月, 2015 1 次提交
  6. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  7. 01 5月, 2015 1 次提交
  8. 17 4月, 2015 1 次提交
  9. 24 3月, 2015 1 次提交
  10. 05 3月, 2015 1 次提交
  11. 30 1月, 2015 1 次提交
  12. 29 1月, 2015 1 次提交
  13. 22 1月, 2015 2 次提交
  14. 07 1月, 2015 1 次提交
  15. 31 12月, 2014 1 次提交
  16. 20 12月, 2014 1 次提交
  17. 03 12月, 2014 1 次提交
    • M
      There are a number of instances throughout the code where the constant 28 is · 0d3ae34d
      Matt Caswell 提交于
      used with no explanation. Some of this was introduced as part of RT#1929. The
      value 28 is the length of the IP header (20 bytes) plus the UDP header (8
      bytes). However use of this constant is incorrect because there may be
      instances where a different value is needed, e.g. an IPv4 header is 20 bytes
      but an IPv6 header is 40. Similarly you may not be using UDP (e.g. SCTP).
      This commit introduces a new BIO_CTRL that provides the value to be used for
      this mtu "overhead". It will be used by subsequent commits.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      0d3ae34d
  18. 17 11月, 2014 1 次提交
  19. 29 8月, 2014 1 次提交
  20. 16 8月, 2014 1 次提交
  21. 09 8月, 2014 2 次提交
  22. 12 5月, 2014 2 次提交
  23. 06 3月, 2014 1 次提交
  24. 02 11月, 2013 1 次提交
    • R
      DTLS/SCTP struct authchunks Bug · b8140811
      Robin Seggelmann 提交于
      PR: 2809
      
      DTLS/SCTP requires DATA and FORWARD-TSN chunks to be protected with
      SCTP-AUTH.  It is checked if this has been activated successfully for
      the local and remote peer. Due to a bug, however, the
      gauth_number_of_chunks field of the authchunks struct is missing on
      FreeBSD, and was therefore not considered in the OpenSSL implementation.
      This patch sets the corresponding pointer for the check correctly
      whether or not this bug is present.
      (cherry picked from commit f596e3c491035fe80db5fc0c3ff6b647662b0003)
      b8140811
  25. 20 1月, 2013 1 次提交
  26. 17 12月, 2012 1 次提交
  27. 14 8月, 2012 1 次提交
  28. 01 7月, 2012 1 次提交
  29. 11 6月, 2012 2 次提交
  30. 30 5月, 2012 1 次提交
  31. 06 3月, 2012 1 次提交
    • D
      PR: 2755 · 62b6948a
      Dr. Stephen Henson 提交于
      Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de>
      
      Reduce MTU after failed transmissions.
      62b6948a
  32. 27 12月, 2011 1 次提交
  33. 25 12月, 2011 1 次提交
    • D
      PR: 2535 · 7e159e01
      Dr. Stephen Henson 提交于
      Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de>
      Reviewed by: steve
      
      Add SCTP support for DTLS (RFC 6083).
      7e159e01
  34. 01 9月, 2011 1 次提交
    • D
      PR: 2340 · 74e056ed
      Dr. Stephen Henson 提交于
      Submitted by: "Mauro H. Leggieri" <mxmauro@caiman.com.ar>
      Reviewed by: steve
      
      Stop warnings if OPENSSL_NO_DGRAM is defined.
      74e056ed
  35. 20 7月, 2011 1 次提交
    • D
      PR: 2559 · dafce90a
      Dr. Stephen Henson 提交于
      Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de>
      Reviewed by: steve
      
      Fix DTLS socket error bug
      dafce90a
  36. 03 1月, 2011 1 次提交
    • D
      PR: 2413 · 88ea810e
      Dr. Stephen Henson 提交于
      Submitted by: Michael Bergandi <mbergandi@gmail.com>
      Reviewed by: steve
      
      Fix typo in crypto/bio/bss_dgram.c
      88ea810e