1. d1d48d4 MEDIUM: peers: use frontend_accept() instead of peer_accept() by Willy Tarreau · 9 years ago
  2. f87ab94 MINOR: proxy: store the default target into the frontend's configuration by Willy Tarreau · 9 years ago
  3. 91d9628 MINOR: peers: centralize configuration of the peers frontend by Willy Tarreau · 9 years ago
  4. bc18da1 MEDIUM: channel: don't always set CF_WAKE_WRITE on bi_put* by Willy Tarreau · 9 years ago
  5. 81cd900 MEDIUM: channel: remove now unused ->prod and ->cons pointers by Willy Tarreau · 10 years ago
  6. ef573c0 MEDIUM: channel: add a new flag "CF_ISRESP" for the response channel by Willy Tarreau · 10 years ago
  7. 4e4292b CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers by Willy Tarreau · 10 years ago
  8. 819d332 MEDIUM: stream-int: remove any reference to the owner by Willy Tarreau · 10 years ago
  9. a2df3fa MEDIUM: stream-interface: remove now unused pointers to channels by Willy Tarreau · 10 years ago
  10. a5f5d8d MEDIUM: stream-int: add a flag indicating which side the SI is on by Willy Tarreau · 10 years ago
  11. 2bb4a96 REORG/MEDIUM: stream-int: introduce si_ic/si_oc to access channels by Willy Tarreau · 10 years ago
  12. 22ec1ea REORG/MAJOR: move session's req and resp channels back into the session by Willy Tarreau · 10 years ago
  13. 2d7ec46 BUG/MAJOR: peers: initialize s->buffer_wait when creating the session by Willy Tarreau · 9 years ago
  14. 3c23a85 CLEANUP: session: remove session_from_task() by Willy Tarreau · 10 years ago
  15. 10fc09e MAJOR: session: only allocate buffers when needed by Willy Tarreau · 10 years ago
  16. 909e267 MINOR: session: group buffer allocations together by Willy Tarreau · 10 years ago
  17. 7dfca9d MINOR: buffer: only use b_free to release buffers by Willy Tarreau · 10 years ago
  18. 696a291 MINOR: buffer: move buffer initialization after channel initialization by Willy Tarreau · 10 years ago
  19. e583ea5 MEDIUM: buffer: use b_alloc() to allocate and initialize a buffer by Willy Tarreau · 10 years ago
  20. 474cf54 MINOR: buffer: reset a buffer in b_reset() and not channel_init() by Willy Tarreau · 10 years ago
  21. 42fb809 BUG/MINOR: peers: the buffer size is global.tune.bufsize, not trash.size by Willy Tarreau · 10 years ago
  22. 9a60ff9 BUG/MEDIUM: peers: fix key consistency for integer stick tables by Cyril Bonté · 10 years ago
  23. 6d7f8f7 MEDIUM: peers: delay appctx initialization by Willy Tarreau · 11 years ago
  24. e4d927a CLEANUP: peers: use less confusing state/status code names by Willy Tarreau · 11 years ago
  25. 1fbe1c9 MEDIUM: stream-int: return the allocated appctx in stream_int_register_handler() by Willy Tarreau · 11 years ago
  26. 7b4b499 MEDIUM: stream-int: replace occurrences of si->appctx with si_appctx() by Willy Tarreau · 11 years ago
  27. 32e3c6a MAJOR: stream interface: dynamically allocate the outgoing connection by Willy Tarreau · 11 years ago
  28. 2a6e880 MEDIUM: stream-interface: introduce si_attach_conn to replace si_prepare_conn by Willy Tarreau · 11 years ago
  29. 3ed35ef MINOR: stream-interface: introduce si_reset() and si_set_state() by Willy Tarreau · 11 years ago
  30. 8caf675 MINOR: peers: make use of conn_init() to initialize the connection by Willy Tarreau · 11 years ago
  31. ce9dbcd MEDIUM: stream-int: do not allocate a connection in parallel to applets by Willy Tarreau · 11 years ago
  32. b363a1f MAJOR: stream-int: stop using si->conn and use si->end instead by Willy Tarreau · 11 years ago
  33. cf644ed MEDIUM: stream-int: make ->end point to the connection or the appctx by Willy Tarreau · 11 years ago
  34. 4a59f2f MAJOR: stream interface: remove the ->release function pointer by Willy Tarreau · 11 years ago
  35. 9b6c2c7 MINOR: stream-int: rename ->applet to ->appctx by Willy Tarreau · 11 years ago
  36. f4acee3 MEDIUM: stream interface: move the peers' ptr into the applet context by Willy Tarreau · 11 years ago
  37. 1e6902f MINOR: connection: always initialize conn->objt_type to OBJ_TYPE_CONN by Willy Tarreau · 11 years ago
  38. 9f68148 MEDIUM: peers: don't rely on conn->xprt_ctx anymore by Willy Tarreau · 11 years ago
  39. 0838295 CLEANUP: stream_interface: remove unused field err_loc by Willy Tarreau · 11 years ago
  40. 86a446e MINOR: peers: accept to learn strings of different lengths by Willy Tarreau · 11 years ago
  41. ae727bf BUG/MINOR: peers: set the accept date in outgoing connections by Willy Tarreau · 11 years ago
  42. 3a925c1 MEDIUM: stick-tables: flush old entries upon soft-stop by Willy Tarreau · 11 years ago
  43. 430f291 CLEANUP: session: remove event_accept() which was not used anymore by Godbach · 11 years ago
  44. abcd514 MEDIUM: log: add a log level override value in struct session by Willy Tarreau · 11 years ago
  45. d5ca9ab MINOR: counters: make it easier to extend the amount of tracked counters by Willy Tarreau · 11 years ago
  46. 9d9179b BUG/MAJOR: peers: fix an overflow when syncing strings larger than 16 bytes by Willy Tarreau · 11 years ago
  47. 72d6c16 CLEANUP: peers: remove a bit of spaghetti to prepare for the next bugfix by Willy Tarreau · 11 years ago
  48. 20d46a5 CLEANUP: session: use an array for the stick counters by Willy Tarreau · 12 years ago
  49. 14cba4b MEDIUM: connection: add an error code in connections by Willy Tarreau · 12 years ago
  50. 3fdb366 MAJOR: connection: replace struct target with a pointer to an enum by Willy Tarreau · 12 years ago
  51. 19d14ef MEDIUM: make the trash be a chunk instead of a char * by Willy Tarreau · 12 years ago
  52. f2943dc MAJOR: session: detach the connections from the stream interfaces by Willy Tarreau · 12 years ago
  53. c919dc6 CLEANUP: remove trashlen by Willy Tarreau · 12 years ago
  54. c93f795 CLEANUP: session: remove term_trace which is not used anymore by Willy Tarreau · 12 years ago
  55. 9b28e03 MAJOR: channel: replace the struct buffer with a pointer to a buffer by Willy Tarreau · 12 years ago
  56. f7bc57c REORG: connection: rename the data layer the "transport layer" by Willy Tarreau · 12 years ago
  57. 4348fad MAJOR: listeners: use dual-linked lists to chain listeners with frontends by Willy Tarreau · 12 years ago
  58. d1d5454 REORG: split "protocols" files into protocol and listener by Willy Tarreau · 12 years ago
  59. 986a9d2 MAJOR: connection: move the addr field from the stream_interface by Willy Tarreau · 12 years ago
  60. 3cefd52 REORG: connection: move the target pointer from si to connection by Willy Tarreau · 12 years ago
  61. 8263d2b CLEANUP: channel: use "channel" instead of "buffer" in function names by Willy Tarreau · 12 years ago
  62. 03cdb7c CLEANUP: channel: usr CF_/CHN_ prefixes instead of BF_/BUF_ by Willy Tarreau · 12 years ago
  63. c7e4238 REORG: buffers: split buffers into chunk,buffer,channel by Willy Tarreau · 12 years ago
  64. c578891 CLEANUP: connection: split sock_ops into data_ops, app_cp and si_ops by Willy Tarreau · 12 years ago
  65. 75bf2c9 REORG: sock_raw: rename the files raw_sock* by Willy Tarreau · 12 years ago
  66. 572bf90 REORG/MAJOR: extract "struct buffer" from "struct channel" by Willy Tarreau · 12 years ago
  67. 505e34a MAJOR: get rid of fdtab[].state and use connection->flags instead by Willy Tarreau · 12 years ago
  68. 96596ae MEDIUM: fd/si: move peeraddr from struct fdinfo to struct connection by Willy Tarreau · 12 years ago
  69. fa6bac6 BUG/MEDIUM: register peer sync handler in the proper order by Willy Tarreau · 12 years ago
  70. 21adb02 MINOR: stream_interface: add a pointer to the listener for TARG_TYPE_CLIENT by Emeric Brun · 12 years ago
  71. 1348d4c MINOR: peers: use the socket layer operations from the peer instead of sock_raw by Willy Tarreau · 12 years ago
  72. 9498113 REORG/MEDIUM: stream_interface: move applet->state and private to connection by Willy Tarreau · 12 years ago
  73. fb7508a REORG/MINOR: stream_interface: move si->fd to struct connection by Willy Tarreau · 12 years ago
  74. 73b013b MINOR: stream_interface: introduce a new "struct connection" type by Willy Tarreau · 12 years ago
  75. 7af4605 BUG/MAJOR: trash must always be the size of a buffer by David du Colombier · 12 years ago
  76. f873d75 CLEANUP: stream_interface: stop exporting socket layer functions by Willy Tarreau · 12 years ago
  77. b277d6e CLEANUP: sock_raw: remove last references to stream_sock by Willy Tarreau · 12 years ago
  78. 1539a01 MINOR: stream_interface: add a client target : TARG_TYPE_CLIENT by Willy Tarreau · 12 years ago
  79. c63190d REORG: use the name sock_raw instead of stream_sock by Willy Tarreau · 12 years ago
  80. bd83314 BUG/MEDIUM: log: ensure that unique_id is properly initialized by Willy Tarreau · 12 years ago
  81. 63e7fe3 BUG/MEDIUM: send_proxy: fix initialisation of send_proxy_ofs by Willy Tarreau · 12 years ago
  82. 26d8c59 REORG/MEDIUM: replace stream interface protocol functions by a proto pointer by Willy Tarreau · 12 years ago
  83. 5c979a9 REORG/MEDIUM: stream_interface: initialize socket ops from descriptors by Willy Tarreau · 12 years ago
  84. 060781f REORG: stream_interface: create a struct sock_ops to hold socket operations by Willy Tarreau · 12 years ago
  85. cd3b094 REORG: rename "pattern" files by Willy Tarreau · 12 years ago
  86. 9dab5fc MEDIUM: buffers: rename a number of buffer management functions by Willy Tarreau · 12 years ago
  87. 9b061e3 MEDIUM: stream_sock: add a get_src and get_dst callback and remove SN_FRT_ADDR_SET by Willy Tarreau · 12 years ago
  88. d94991d CLEANUP: Fix some minor whitespace issues by Aman Gupta · 12 years ago
  89. 9a13e84 MINOR: Add release callback to si_applet by Aman Gupta · 12 years ago
  90. 7b77c9f CLEANUP: silence a warning when building on sparc by Willy Tarreau · 12 years ago
  91. 6471afb MINOR: remove the client/server side distinction in SI addresses by Willy Tarreau · 13 years ago
  92. 3c63fd8 [MEDIUM] don't limit peers nor stats socket to maxconn nor maxconnrate by Willy Tarreau · 13 years ago
  93. 8b7b05a [MEDIUM] Fix stick-table replication on soft-restart by Simon Horman · 13 years ago
  94. 562515c [CLEANUP] proxy: rename a few proxy states (PR_STIDLE and PR_STRUN) by Willy Tarreau · 13 years ago
  95. 9bd0d74 [BUG] session: risk of crash on out of memory (1.5-dev regression) by Willy Tarreau · 13 years ago
  96. af51495 [MINOR] Add active connection list to server by Simon Horman · 13 years ago
  97. 9655377 [CLEANUP] peers.h: fix declarations by Simon Horman · 13 years ago
  98. 7b7a8e9 [BUG] log: retrieve the target from the session, not the SI by Willy Tarreau · 13 years ago
  99. 6f5ccb1 [MEDIUM] add internal support for IPv6 server addresses by David du Colombier · 13 years ago
  100. 827aee9 [MAJOR] session: remove the ->srv pointer from struct session by Willy Tarreau · 13 years ago