Commit 753e1e5a authored by Sara Golemon's avatar Sara Golemon Committed by Alecs King

Reformat comment for readability, 80-col rule, and gcc cleanliness

Summary:
The continuation at the end of the line with the while
was causing gcc to complain about it because it's a
single line comment.

Reformat it into a multiline comment and wrap it to 80 chars.

Test Plan: It's just a comment...

Reviewed By: paulbiss@fb.com

Subscribers: trunkagent, folly-diffs@, yfeldblum

FB internal diff: D1850876

Signature: t1:1850876:1424124973:b2afbc2a8177ac6d11a21bf5a52093bcfd9cbb3e
parent f30a65d2
...@@ -422,9 +422,15 @@ int SSLContext::advertisedNextProtocolCallback(SSL* ssl, ...@@ -422,9 +422,15 @@ int SSLContext::advertisedNextProtocolCallback(SSL* ssl,
#if defined(SSL_MODE_HANDSHAKE_CUTTHROUGH) && \ #if defined(SSL_MODE_HANDSHAKE_CUTTHROUGH) && \
FOLLY_SSLCONTEXT_USE_TLS_FALSE_START FOLLY_SSLCONTEXT_USE_TLS_FALSE_START
SSLContext::SSLFalseStartChecker::SSLFalseStartChecker() : SSLContext::SSLFalseStartChecker::SSLFalseStartChecker() :
// The list was generated as follows: /**
// grep "_CK_" openssl-1.0.1e/ssl/s3_lib.c -A 4 | while read A && read B && read C && read D && read E && read F; do echo $A $B $C $D $E; done | \ * The list was generated as follows:
// grep "\(SSL_kDHr\|SSL_kDHd\|SSL_kEDH\|SSL_kECDHr\|SSL_kECDHe\|SSL_kEECDH\)" | grep -v SSL_aNULL | grep SSL_AES | awk -F, '{ print $1"," }' * grep "_CK_" openssl-1.0.1e/ssl/s3_lib.c -A 4 |
* while read A && read B && read C && read D && read E && read F; do
* echo $A $B $C $D $E; done |
* grep "\(SSL_kDHr\|SSL_kDHd\|SSL_kEDH\|SSL_kECDHr\|
* SSL_kECDHe\|SSL_kEECDH\)" | grep -v SSL_aNULL | grep SSL_AES |
* awk -F, '{ print $1"," }'
*/
ciphers_{ ciphers_{
TLS1_CK_DH_DSS_WITH_AES_128_SHA, TLS1_CK_DH_DSS_WITH_AES_128_SHA,
TLS1_CK_DH_RSA_WITH_AES_128_SHA, TLS1_CK_DH_RSA_WITH_AES_128_SHA,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment