~ubuntu-branches/ubuntu/wily/haproxy/wily

« back to all changes in this revision

Viewing changes to include/proto/ssl_sock.h

  • Committer: Package Import Robot
  • Author(s): Apollon Oikonomopoulos
  • Date: 2014-07-14 00:42:32 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20140714004232-ubjc0l8wv0x55e9i
Tags: 1.5.2-1
* New upstream stable release. Important fixes:
  + A few sample fetch functions when combined in certain ways would return
    malformed results, possibly crashing the HAProxy process.
  + Hash-based load balancing and http-send-name-header would fail for
    requests which contain a body which starts to be forwarded before the
    data is used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
const char *ssl_sock_get_proto_version(struct connection *conn);
53
53
char *ssl_sock_get_version(struct connection *conn);
54
54
int ssl_sock_get_cert_used(struct connection *conn);
55
 
char *ssl_sock_get_common_name(struct connection *conn);
 
55
int ssl_sock_get_remote_common_name(struct connection *conn, struct chunk *out);
56
56
unsigned int ssl_sock_get_verify_result(struct connection *conn);
57
57
#ifdef SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB
58
58
int ssl_sock_update_ocsp_response(struct chunk *ocsp_response, char **err);