diff options
| author | Lars Magne Ingebrigtsen | 2010-09-27 18:44:31 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2010-09-27 18:44:31 +0200 |
| commit | 8ed70bf3167e37c8c15fb3d3286dfb1eb696a85a (patch) | |
| tree | 6a774f238b22a7bfe1dae8477d02c91907c63a42 /src/process.h | |
| parent | bedf4aabcfdeeb65a8e6050b1f192cbd679a4172 (diff) | |
| download | emacs-8ed70bf3167e37c8c15fb3d3286dfb1eb696a85a.tar.gz emacs-8ed70bf3167e37c8c15fb3d3286dfb1eb696a85a.zip | |
Add gnutls logging and clean up various gnutls bits.
From: Teodor Zlatanov <tzz@lifelogs.com>
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h index d6e842cfbbc..a28bf090ba9 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -133,8 +133,9 @@ struct Lisp_Process | |||
| 133 | #ifdef HAVE_GNUTLS | 133 | #ifdef HAVE_GNUTLS |
| 134 | gnutls_initstage_t gnutls_initstage; | 134 | gnutls_initstage_t gnutls_initstage; |
| 135 | gnutls_session_t gnutls_state; | 135 | gnutls_session_t gnutls_state; |
| 136 | gnutls_certificate_client_credentials x509_cred; | 136 | gnutls_certificate_client_credentials gnutls_x509_cred; |
| 137 | gnutls_anon_client_credentials_t anon_cred; | 137 | gnutls_anon_client_credentials_t gnutls_anon_cred; |
| 138 | int gnutls_log_level; | ||
| 138 | #endif | 139 | #endif |
| 139 | }; | 140 | }; |
| 140 | 141 | ||