Changeset 37f8282 in mod_gnutls for include


Ignore:
Timestamp:
Dec 7, 2011, 12:22:48 AM (11 years ago)
Author:
Dash Shendy <neuromancer@…>
Branches:
asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
Children:
694fc04
Parents:
33826c5
Message:

mod_proxy support continued

Signed-off-by: Dash Shendy <neuromancer@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/mod_gnutls.h.in

    r33826c5 r37f8282  
    111111    int tickets; /* whether session tickets are allowed */
    112112    int proxy_enabled;
    113     int non_ssl_request;
    114113} mgs_srvconf_rec;
    115114
     
    138137    apr_size_t output_length;
    139138    int status;
     139    int non_ssl_request;
    140140} mgs_handle_t;
    141141
     
    146146
    147147 /* Proxy Support */
     148/* An optional function which returns non-zero if the given connection
     149is using SSL/TLS. */
     150APR_DECLARE_OPTIONAL_FN(int, ssl_is_https, (conn_rec *));
     151/* The ssl_proxy_enable() and ssl_engine_disable() optional functions
     152 * are used by mod_proxy to enable use of SSL for outgoing
     153 * connections. */
     154APR_DECLARE_OPTIONAL_FN(int, ssl_proxy_enable, (conn_rec *));
     155APR_DECLARE_OPTIONAL_FN(int, ssl_engine_disable, (conn_rec *));
     156int ssl_is_https(conn_rec *c);
    148157int ssl_proxy_enable(conn_rec *c);
    149158int ssl_engine_disable(conn_rec *c);
     159const char *mgs_set_proxy_engine(cmd_parms * parms, void *dummy,
     160    const char *arg);
     161apr_status_t mgs_cleanup_pre_config(void *data);
    150162
    151163/**
Note: See TracChangeset for help on using the changeset viewer.