1. 20 May, 2016 3 commits
    • Matt Caswell's avatar
      Simplify SSL BIO buffering logic · 46417569
      Matt Caswell authored
      
      
      The write BIO for handshake messages is bufferred so that we only write
      out to the network when we have a complete flight. There was some
      complexity in the buffering logic so that we switched buffering on and
      off at various points through out the handshake. The only real reason to
      do this was historically it complicated the state machine when you wanted
      to flush because you had to traverse through the "flush" state (in order
      to cope with NBIO). Where we knew up front that there was only going to
      be one message in the flight we switched off buffering to avoid that.
      
      In the new state machine there is no longer a need for a flush state so
      it is simpler just to have buffering on for the whole handshake. This
      also gives us the added benefit that we can simply call flush after every
      flight even if it only has one message in it. This means that BIO authors
      can implement their own buffering strategies and not have to be aware of
      the state of the SSL object (previously they would have to switch off
      their own buffering during the handshake because they could not rely on
      a flush being received when they really needed to write data out). This
      last point addresses GitHub Issue #322.
      
      Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
      46417569
    • Richard Levitte's avatar
      Fixup READLINE case · 72106aaa
      Richard Levitte authored
      
      
      RT#4543
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
      72106aaa
    • Rich Salz's avatar
      Fix nits in pod files. · 1bc74519
      Rich Salz authored
      
      
      Add doc-nit-check to help find future issues.
      Make podchecker be almost clean.
      Remove trailing whitespace.
      Tab expansion
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      1bc74519
  2. 19 May, 2016 15 commits
  3. 18 May, 2016 21 commits
  4. 17 May, 2016 1 commit