aboutsummaryrefslogtreecommitdiff
path: root/src/openvpn/ssl_openssl.h
diff options
context:
space:
mode:
authorDavid Sommerseth2016-12-14 22:33:21 +0100
committerDavid Sommerseth2016-12-14 22:33:49 +0100
commit81d882d5302b8b647202a6893b57dfdc61fd6df2 (patch)
treea77464fe53e45fd843fcee2ff008bcf4f6482d56 /src/openvpn/ssl_openssl.h
parent2417d55c4945d491e528dd0e4cf24047da5ceae9 (diff)
downloadopenvpn-81d882d5302b8b647202a6893b57dfdc61fd6df2.zip
openvpn-81d882d5302b8b647202a6893b57dfdc61fd6df2.tar.gz
The Great Reformatting - first phase
This is the first commit of the big reformatting task. This is performed by running the ./dev-tools/reformat-all.sh script. This is based upon the v3 reformat-all.sh/uncrustify.conf version which is now applied to git master. Signed-off-by: David Sommerseth <davids@openvpn.net>
Diffstat (limited to 'src/openvpn/ssl_openssl.h')
-rw-r--r--src/openvpn/ssl_openssl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/openvpn/ssl_openssl.h b/src/openvpn/ssl_openssl.h
index 115ac43..5f77713 100644
--- a/src/openvpn/ssl_openssl.h
+++ b/src/openvpn/ssl_openssl.h
@@ -40,7 +40,7 @@
* resumption (and the accompanying SSL_OP_NO_TICKET flag).
*/
#ifndef SSL_OP_NO_TICKET
-# define SSL_OP_NO_TICKET 0
+#define SSL_OP_NO_TICKET 0
#endif
/**
@@ -54,10 +54,10 @@ struct tls_root_ctx {
};
struct key_state_ssl {
- SSL *ssl; /* SSL object -- new obj created for each new key */
- BIO *ssl_bio; /* read/write plaintext from here */
- BIO *ct_in; /* write ciphertext to here */
- BIO *ct_out; /* read ciphertext from here */
+ SSL *ssl; /* SSL object -- new obj created for each new key */
+ BIO *ssl_bio; /* read/write plaintext from here */
+ BIO *ct_in; /* write ciphertext to here */
+ BIO *ct_out; /* read ciphertext from here */
};
/**
@@ -66,6 +66,6 @@ struct key_state_ssl {
*/
extern int mydata_index; /* GLOBAL */
-void openssl_set_mydata_index (void);
+void openssl_set_mydata_index(void);
#endif /* SSL_OPENSSL_H_ */