- Timestamp:
- Sep 27, 2004, 8:20:51 PM (18 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- b1f7f11
- Parents:
- 2e12226
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h
r2e12226 rdae0aec 70 70 } mod_gnutls_srvconf_rec; 71 71 72 typedef struct { 73 int length; 74 char *value; 75 } mod_gnutls_char_buffer_t; 76 72 77 typedef struct 73 78 { 74 79 mod_gnutls_srvconf_rec *sc; 80 conn_rec* c; 75 81 gnutls_session_t session; 82 83 apr_status_t input_rc; 76 84 ap_filter_t *input_filter; 77 85 apr_bucket_brigade *input_bb; 78 86 apr_read_type_e input_block; 87 ap_input_mode_t input_mode; 88 mod_gnutls_char_buffer_t input_cbuf; 89 char input_buffer[AP_IOBUFSIZE]; 90 91 apr_status_t output_rc; 92 ap_filter_t *output_filter; 93 apr_bucket_brigade *output_bb; 94 char output_buffer[AP_IOBUFSIZE]; 95 apr_size_t output_blen; 96 apr_size_t output_length; 97 79 98 int status; 80 99 int non_https;
Note: See TracChangeset
for help on using the changeset viewer.