1. 03 6月, 2015 2 次提交
    • R
      Standardize handling of #ifdef'd options. · 9c3bcfa0
      Rich Salz 提交于
      Here are the "rules" for handling flags that depend on #ifdef:
      
      - Do not ifdef the enum.  Only ifdef the OPTIONS table.  All ifdef'd
        entries appear at the end; by convention "engine" is last.  This
        ensures that at run-time, the flag will never be recognized/allowed.
        The next two bullets entries are for silencing compiler warnings:
      - In the while/switch parsing statement, use #ifdef for the body to
        disable it; leave the "case OPT_xxx:" and "break" statements outside
        the ifdef/ifndef.  See ciphers.c for example.
      - If there are multiple options controlled by a single guard, OPT_FOO,
        OPT_BAR, etc., put a an #ifdef around the set, and then do "#else"
        and a series of case labels and a break. See OPENSSL_NO_AES in cms.c
        for example.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      9c3bcfa0
    • R
      RT832: Use REUSEADDR in ocsp responder · 366e2a60
      Rich Salz 提交于
      I also re-ordered some of #ifdef's.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      366e2a60
  2. 02 6月, 2015 6 次提交
  3. 01 6月, 2015 2 次提交
  4. 31 5月, 2015 2 次提交
  5. 29 5月, 2015 10 次提交
  6. 28 5月, 2015 6 次提交
  7. 27 5月, 2015 1 次提交
  8. 26 5月, 2015 11 次提交