1. f79c817 MAJOR: connection: add two new flags to indicate readiness of control/transport by Willy Tarreau · 11 years ago
  2. b363a1f MAJOR: stream-int: stop using si->conn and use si->end instead by Willy Tarreau · 11 years ago
  3. a65b343 MEDIUM: pattern: rename "acl" prefix to "pat" by Thierry FOURNIER · 11 years ago
  4. ed66c29 REORG: acl/pattern: extract pattern matching from the acl file and create pattern.c by Thierry FOURNIER · 11 years ago
  5. 6618300 MEDIUM: Split up struct server's check element by Simon Horman · 11 years ago
  6. 369da85 BUG/MINOR: ssl: verifyhost does not match empty strings on wildcard. by Emeric Brun · 11 years ago
  7. a848dae MINOR: ssl: optimization of verifyhost on wildcard certificates. by Emeric Brun · 11 years ago
  8. 9bf3ba2 BUG/MINOR: ssl: potential memory leaks using ssl_c_key_alg or ssl_c_sig_alg. by Emeric Brun · 11 years ago
  9. a33410c BUILD: ssl: compilation issue with openssl v0.9.6. by Emeric Brun · 11 years ago
  10. 4ad50a4 BUG/MEDIUM: ssl: potential memory leak using verifyhost by Emeric Brun · 11 years ago
  11. be55431 MINOR: ssl: Add statement 'verifyhost' to "server" statements by Evan Broder · 11 years ago
  12. 3801103 MINOR: ssl: use MAXPATHLEN instead of PATH_MAX by Willy Tarreau · 11 years ago
  13. ef38c39 MEDIUM: sample: systematically pass the keyword pointer to the keyword by Willy Tarreau · 11 years ago
  14. dc13c11 BUG/MEDIUM: prevent gcc from moving empty keywords lists into BSS by Willy Tarreau · 11 years ago
  15. 6d4e4e8 MEDIUM: acl: remove a lot of useless ACLs that are equivalent to their fetches by Willy Tarreau · 11 years ago
  16. 2b57cb8 MEDIUM: protocol: implement a "drain" function in protocol layers by Willy Tarreau · 11 years ago
  17. 79274e2 BUG: ssl: fix crt-list for clients not supporting SNI by Emmanuel Hocdet · 11 years ago
  18. cad8234 BUG: ssl: send payload gets corrupted if tune.ssl.maxrecord is used by Kevin Hester · 11 years ago
  19. a051b4a MINOR: ssl: add pattern fetch 'ssl_c_sha1' by James Voth · 11 years ago
  20. 7c41a1b MEDIUM: ssl: improve crt-list format to support negation by Emmanuel Hocdet · 11 years ago
  21. 41fdb3c BUG/MEDIUM: ssl: EDH ciphers are not usable if no DH parameters present in pem file. by Emeric Brun · 11 years ago
  22. 50bcecc BUG/MEDIUM: Fix crt-list file parsing error: filtered name was ignored. by Emeric Brun · 11 years ago
  23. ab861d3 MINOR: ssl: add support for the "alpn" bind keyword by Willy Tarreau · 11 years ago
  24. d86e29d CLEANUP: acl: remove unused references to ACL_USE_* by Willy Tarreau · 11 years ago
  25. c48c90d MAJOR: acl: remove the arg_mask from the ACL definition and use the sample fetch's by Willy Tarreau · 11 years ago
  26. 8ed669b MAJOR: acl: make all ACLs reference the fetch function via a sample. by Willy Tarreau · 11 years ago
  27. 80aca90 MEDIUM: samples: use new flags to describe compatibility between fetches and their usages by Willy Tarreau · 11 years ago
  28. e0db1e8 MEDIUM: acl: remove flag ACL_MAY_LOOKUP which is improperly used by Willy Tarreau · 12 years ago
  29. ad1731d BUG/MEDIUM: ssl: improve error processing and reporting in ssl_sock_load_cert_list_file() by Willy Tarreau · 11 years ago
  30. fe61656 MEDIUM: ssl: add mapping from SNI to cert file using "crt-list" by Emmanuel Hocdet · 11 years ago
  31. 49f74d0 BUG/MINOR: acl: ssl_c_used, ssl_fc{,_has_crt,_has_sni} take no pattern by Willy Tarreau · 11 years ago
  32. e5b4f9d BUG/MINOR: acl: ssl_fc_{alg,use}_keysize must parse integers, not strings by Willy Tarreau · 11 years ago
  33. 6924ef8 BUG/MEDIUM: ssl: ECDHE ciphers not usable without named curve configured. by Emeric Brun · 11 years ago
  34. bfd5946 MINOR: ssl: add a global tunable for the max SSL/TLS record size by Willy Tarreau · 11 years ago
  35. 383085f BUG/MEDIUM: ssl: openssl 0.9.8 doesn't open /dev/random before chroot by Thierry Fournier · 11 years ago
  36. 6562337 MEDIUM: ssl: add bind-option "strict-sni" by Emmanuel Hocdet · 11 years ago
  37. 47ca545 MINOR: chunks: centralize the trash chunk allocation by Willy Tarreau · 12 years ago
  38. 9143d37 MINOR: ssl: add fetch and acl "ssl_c_used" to check if current SSL session uses a client certificate. by Emeric Brun · 12 years ago
  39. 5fb3803 CLEANUP: buffer: use buffer_empty() instead of buffer_len()==0 by Willy Tarreau · 12 years ago
  40. 1c64686 BUG/MINOR: ssl: error is not reported if it occurs simultaneously with peer close detection. by Emeric Brun · 12 years ago
  41. 644cde0 BUG/MEDIUM: ssl: Prevent ssl error from affecting other connections. by Emeric Brun · 12 years ago
  42. ee2663b BUILD: ssl: NAME_MAX is not portable, use MAXPATHLEN instead by Willy Tarreau · 12 years ago
  43. 1eb20ef BUG/MEDIUM: ssl: first outgoing connection would fail with {ca,crt}-ignore-err by Emeric Brun · 12 years ago
  44. 20879a0 MEDIUM: connection: add error reporting for the SSL by Willy Tarreau · 12 years ago
  45. d1b3f04 MINOR: connection: don't remove failed handshake flags by Willy Tarreau · 12 years ago
  46. 7d588ee BUILD: ssl: OpenSSL 0.9.6 has no renegociation by Willy Tarreau · 12 years ago
  47. 4f65bff MINOR: ssl: Add tune.ssl.lifetime statement in global. by Emeric Brun · 12 years ago
  48. 674b743 BUG/MEDIUM: ssl: Fix sometimes reneg fails if requested by server. by Emeric Brun · 12 years ago
  49. 282a76a BUG/MEDIUM: ssl: Fix some reneg cases not correctly handled. by Emeric Brun · 12 years ago
  50. 8af8dd1 BUG/MEDIUM: ssl: review polling on reneg. by Emeric Brun · 12 years ago
  51. 3fdb366 MAJOR: connection: replace struct target with a pointer to an enum by Willy Tarreau · 12 years ago
  52. 19d14ef MEDIUM: make the trash be a chunk instead of a char * by Willy Tarreau · 12 years ago
  53. f2943dc MAJOR: session: detach the connections from the stream interfaces by Willy Tarreau · 12 years ago
  54. c919dc6 CLEANUP: remove trashlen by Willy Tarreau · 12 years ago
  55. 61694ab MINOR: ssl: checks the consistency of a private key with the corresponding certificate by Emeric Brun · 12 years ago
  56. a7aa309 MINOR: ssl: add 'crt' statement on server. by Emeric Brun · 12 years ago
  57. ce5ad80 MINOR: ssl: add pattern and ACLs fetches 'ssl_c_notbefore', 'ssl_c_notafter', 'ssl_f_notbefore' and 'ssl_f_notafter' by Emeric Brun · 12 years ago
  58. 521a011 MINOR: ssl: add pattern and ACLs fetches 'ssl_c_key_alg' and 'ssl_f_key_alg' by Emeric Brun · 12 years ago
  59. 7f56e74 MINOR: ssl: add pattern and ACLs 'ssl_c_sig_alg' and 'ssl_f_sig_alg' by Emeric Brun · 12 years ago
  60. 8785589 MINOR: ssl: add pattern and ACLs fetches 'ssl_c_s_dn', 'ssl_c_i_dn', 'ssl_f_s_dn' and 'ssl_c_i_dn' by Emeric Brun · 12 years ago
  61. a7359fd MINOR: ssl: add pattern and ACLs fetches 'ssl_c_version' and 'ssl_f_version' by Emeric Brun · 12 years ago
  62. 8d59840 MINOR: ssl: add pattern and ACLs fetches 'ssl_c_serial' and 'ssl_f_serial' by Willy Tarreau · 12 years ago
  63. fe68f68 MINOR: ssl: add pattern fetch 'ssl_fc_session_id' by Emeric Brun · 12 years ago
  64. 589fcad MINOR: ssl: add pattern and ACLs fetches 'ssl_fc_protocol', 'ssl_fc_cipher', 'ssl_fc_use_keysize' and 'ssl_fc_alg_keysize' by Emeric Brun · 12 years ago
  65. 2525b6b MINOR: conf: rename all ssl modules fetches using prefix 'ssl_fc' and 'ssl_c' by Emeric Brun · 12 years ago
  66. 566dc55 MINOR: ssl: improve socket behaviour upon handshake abort. by Willy Tarreau · 12 years ago
  67. 8c866a3 BUG: ssl: fix ssl_sni ACLs to correctly process regular expressions by Willy Tarreau · 12 years ago
  68. 6c9a3d5 MEDIUM: ssl: add support for the "npn" bind keyword by Willy Tarreau · 12 years ago
  69. a33c654 MINOR: ssl: add 'ssl_npn' sample/acl to extract TLS/NPN information by Willy Tarreau · 12 years ago
  70. ffc3fcd MEDIUM: log: report SSL ciphers and version in logs using logformat %sslc/%sslv by Willy Tarreau · 12 years ago
  71. ef42d92 MINOR: ssl: add statements 'verify', 'ca-file' and 'crl-file' on servers. by Emeric Brun · 12 years ago
  72. f9c5c47 MINOR: ssl: add statement 'no-tls-tickets' on server side. by Emeric Brun · 12 years ago
  73. ecc91fe MEDIUM: ssl: reject ssl server keywords in default-server statement by Emeric Brun · 12 years ago
  74. 94324a4 MINOR: ssl: move ssl context init for servers from cfgparse.c to ssl_sock.c by Emeric Brun · 12 years ago
  75. 92faadf MEDIUM: ssl: move "server" keyword SSL options parsing to ssl_sock.c by Willy Tarreau · 12 years ago
  76. 76d8895 MINOR: ssl: add defines LISTEN_DEFAULT_CIPHERS and CONNECT_DEFAULT_CIPHERS. by Emeric Brun · 12 years ago
  77. 2cb7ae5 MINOR: ssl: add 'force-sslv3' and 'force-tlsvXX' statements on bind. by Emeric Brun · 12 years ago
  78. 8967549 MINOR: ssl: use bit fields to store ssl options instead of one int each by Emeric Brun · 12 years ago
  79. fb510ea MEDIUM: conf: rename 'cafile' and 'crlfile' statements 'ca-file' and 'crl-file' by Emeric Brun · 12 years ago
  80. 9b3009b MEDIUM: conf: rename 'nosslv3' and 'notlsvXX' statements 'no-sslv3' and 'no-tlsvXX'. by Emeric Brun · 12 years ago
  81. c8e8d12 MINOR: ssl: add 'crt-base' and 'ca-base' global statements. by Emeric Brun · 12 years ago
  82. 9fa8973 BUG/MEDIUM: ssl: subsequent handshakes fail after server configuration changes by Emeric Brun · 12 years ago
  83. 3c4bc6e MINOR: ssl: remove prefer-server-ciphers statement and set it as the default on ssl listeners. by Emeric Brun · 12 years ago
  84. f7bc57c REORG: connection: rename the data layer the "transport layer" by Willy Tarreau · 12 years ago
  85. 8923019 BUG/MINOR: ssl: report the L4 connection as established when possible by Willy Tarreau · 12 years ago
  86. 051cdab BUG/MINOR: build: Fix compilation issue on openssl 0.9.6 due to missing CRL feature. by Emeric Brun · 12 years ago
  87. 561e574 BUG/MINOR: ssl: Fix CRL check was not enabled when crlfile was specified. by Emeric Brun · 12 years ago
  88. 2d0c482 MINOR: ssl: add statement 'no-tls-tickets' on bind to disable stateless session resumption by Emeric Brun · 12 years ago
  89. c0ff492 MINOR: ssl : add statements 'notlsv11' and 'notlsv12' and rename 'notlsv1' to 'notlsv10'. by Emeric Brun · 12 years ago
  90. f282a81 MINOR: ssl: add fetches and ACLs to return verify errors by Emeric Brun · 12 years ago
  91. baf8ffb MINOR: ssl: add fetch and ACL 'ssl_verify_result' by Emeric Brun · 12 years ago
  92. 81c00f0 MINOR: ssl: add ignore verify errors options by Emeric Brun · 12 years ago
  93. e64aef1 MINOR: ssl: add fetch and ACL 'client_crt' to test a client cert is present by Emeric Brun · 12 years ago
  94. d94b3fe MEDIUM: ssl: add client certificate authentication support by Emeric Brun · 12 years ago
  95. 2b58d04 MINOR: ssl: add elliptic curve Diffie-Hellman support for ssl key generation by Emeric Brun · 12 years ago
  96. a4bcd9a MINOR: ssl: try to load Diffie-Hellman parameters from cert file by Emeric Brun · 12 years ago
  97. 81796be MINOR: ssl: set the listeners' data layer to ssl during parsing by Willy Tarreau · 12 years ago
  98. eb6cead MINOR: standard: make memprintf() support a NULL destination by Willy Tarreau · 12 years ago
  99. 4348fad MAJOR: listeners: use dual-linked lists to chain listeners with frontends by Willy Tarreau · 12 years ago
  100. 51fb765 MINOR: listener: add a scope field in the bind keyword lists by Willy Tarreau · 12 years ago