Gitiles
Code Review
Sign In
git01.mediatek.com
/
haproxy
/
ed061c0590109dde6cd77cd963bebc46ba0cd0cc
/
src
/
channel.c
285ff0f
BUG/MEDIUM: channel: bi_putblk() must not wrap before the end of buffer
by Willy Tarreau
· 11 years ago
d7ad9f5
MAJOR: channel: add a new flag CF_WAKE_WRITE to notify the task of writes
by Willy Tarreau
· 11 years ago
82de2b6
BUG/MEDIUM: channel: bo_getline() must wait for \n until buffer is full
by Willy Tarreau
· 11 years ago
55a6906
OPTIM: channel: inline channel_forward's fast path
by Willy Tarreau
· 12 years ago
9b28e03
MAJOR: channel: replace the struct buffer with a pointer to a buffer
by Willy Tarreau
· 12 years ago
974ced6
CLEANUP: channel: use 'chn' instead of 'buf' as local variable names
by Willy Tarreau
· 12 years ago
8263d2b
CLEANUP: channel: use "channel" instead of "buffer" in function names
by Willy Tarreau
· 12 years ago
03cdb7c
CLEANUP: channel: usr CF_/CHN_ prefixes instead of BF_/BUF_
by Willy Tarreau
· 12 years ago
af81935
REORG: channel: move buffer_{replace,insert_line}* to buffer.{c,h}
by Willy Tarreau
· 12 years ago
f941cf2
MAJOR: channel: remove the BF_FULL flag
by Willy Tarreau
· 12 years ago
3bf1b2b
MAJOR: channel: stop relying on BF_FULL to take action
by Willy Tarreau
· 12 years ago
ad1cc3d
MINOR: channel: rename bi_full to channel_full as it checks the whole channel
by Willy Tarreau
· 12 years ago
a75bcef
REORG: buffer: move buffer_flush, b_adv and b_rew to buffer.h
by Willy Tarreau
· 12 years ago
8e21bb9
MAJOR: channel: remove the BF_OUT_EMPTY flag
by Willy Tarreau
· 12 years ago
c7e4238
REORG: buffers: split buffers into chunk,buffer,channel
by Willy Tarreau
· 12 years ago
[Renamed (67%) from src/buffers.c]
572bf90
REORG/MAJOR: extract "struct buffer" from "struct channel"
by Willy Tarreau
· 12 years ago
7421efb
REORG/MAJOR: use "struct channel" instead of "struct buffer"
by Willy Tarreau
· 12 years ago
743a2d3
BUG/MEDIUM: buffers: fix bi_putchr() to correctly advance the pointer
by Willy Tarreau
· 12 years ago
a7fe8e5
MINOR: http: replace http_message_realign() with buffer_slow_realign()
by Willy Tarreau
· 12 years ago
9dab5fc
MEDIUM: buffers: rename a number of buffer management functions
by Willy Tarreau
· 12 years ago
328582c
MEDIUM: buffers: implement b_adv() to advance a buffer's pointer
by Willy Tarreau
· 13 years ago
cc5cfcb
MEDIUM: buffers: add new pointer wrappers and get rid of almost all buffer_wrap_add calls
by Willy Tarreau
· 13 years ago
a458b67
MAJOR: http: move buffer->lr to http_msg->next
by Willy Tarreau
· 13 years ago
363a5bb
MAJOR: buffers: replace buf->r with buf->p + buf->i
by Willy Tarreau
· 13 years ago
89fa706
MAJOR: buffers: replace buf->w with buf->p - buf->o
by Willy Tarreau
· 13 years ago
02d6cfc
MAJOR: buffer: replace buf->l with buf->{o+i}
by Willy Tarreau
· 13 years ago
2e046c6
MAJOR: buffer rework: replace ->send_max with ->o
by Willy Tarreau
· 13 years ago
19ae56b
CLEANUP: kill buffer_replace() and use an inline instead
by Willy Tarreau
· 13 years ago
4b517ca
MEDIUM: buffers: add some new primitives and rework existing ones
by Willy Tarreau
· 13 years ago
0bc3493
[OPTIM] buffers: uninline buffer_forward()
by Willy Tarreau
· 14 years ago
74b08c9
[MEDIUM] buffers: rework the functions to exchange between SI and buffers
by Willy Tarreau
· 14 years ago
591fedc
[MEDIUM] buffer: make buffer_feed* support writing non-contiguous chunks
by Willy Tarreau
· 14 years ago
88e0581
[BUILD] fix some build warnings on Solaris with is* macros
by Willy Tarreau
· 15 years ago
b97f199
[MEDIUM] http: don't use trash to realign large buffers
by Willy Tarreau
· 15 years ago
c5bbe53
[CRITICAL] buffers: buffer_insert_line2 must not change the ->w entry
by Willy Tarreau
· 15 years ago
bbfa793
[BUG] buffer_replace2 must never change the ->w entry
by Willy Tarreau
· 15 years ago
43a7e66
[BUG] buffers: remove remains of wrong obsolete length check
by Willy Tarreau
· 15 years ago
019fd5b
[BUG] buffers: wrong size calculation for displaced data
by Willy Tarreau
· 15 years ago
7c3c541
[MAJOR] buffers: automatically compute the maximum buffer length
by Willy Tarreau
· 15 years ago
ba8d7d3
[MINOR] Add chunk_htmlencode and chunk_asciiencode
by Krzysztof Piotr Oledzki
· 15 years ago
9bcc91e
[MINOR] buffers: add buffer_feed2() and make buffer_feed() measure string length
by Willy Tarreau
· 15 years ago
78abe61
[MAJOR] struct chunk rework
by Krzysztof Piotr Oledzki
· 15 years ago
2e1dd3d
[BUG] fix buffer_skip() and buffer_si_getline() to correctly handle wrap-arounds
by Willy Tarreau
· 15 years ago
fb0e920
[MINOR] ensure that buffer_feed() and buffer_skip() set BF_*_PARTIAL
by Willy Tarreau
· 15 years ago
31971e5
[MEDIUM] add support for infinite forwarding
by Willy Tarreau
· 15 years ago
ba0b63d
[MAJOR] buffers: fix the BF_EMPTY flag's meaning
by Willy Tarreau
· 15 years ago
c77e761
[MINOR] buffers: inline buffer_si_putchar()
by Willy Tarreau
· 15 years ago
36a5c53
[MINOR] buffers: provide buffer_si_putchar() to send a char from a stream interface
by Willy Tarreau
· 15 years ago
4fe7a2e
[MINOR] buffers: add peekchar and peekline functions for stream interfaces
by Willy Tarreau
· 15 years ago
aeac319
[MEDIUM] buffers: provide new buffer_feed*() function
by Willy Tarreau
· 15 years ago
078e294
[MEDIUM] report error on buffer writes larger than buffer size
by Willy Tarreau
· 15 years ago
27a674e
[MEDIUM] make it possible to change the buffer size in the configuration
by Willy Tarreau
· 15 years ago
a07a34e
[MEDIUM] replace BUFSIZE with buf->size in computations
by Willy Tarreau
· 15 years ago
03d60bb
[OPTIM] buffer: replace rlim by max_len
by Willy Tarreau
· 16 years ago
f890dc9
[MEDIUM] add a send limit to a buffer
by Willy Tarreau
· 16 years ago
e393fe2
[MEDIUM] buffers: add BF_EMPTY and BF_FULL to remove dependency on req/rep->l
by Willy Tarreau
· 16 years ago
8e4b21d
[BUG] Flush buffers also where there are exactly 0 bytes left
by Krzysztof Piotr Oledzki
· 17 years ago
dceaa08
[MEDIUM] ensure we never overflow in chunk_printf()
by Willy Tarreau
· 17 years ago
7341d94
[MAJOR] switched buffers to mempools v2
by Willy Tarreau
· 17 years ago
4af6f3a
[MINOR] HTTP: factorize all the header insertions
by Willy Tarreau
· 18 years ago
e09e0ce
[MINOR] removed the ->h member in struct buffer
by Willy Tarreau
· 18 years ago
8d5d7f2
[MAJOR] huge rework of the HTTP request FSM
by Willy Tarreau
· 18 years ago
35d66b0
[MINOR] added byte count to sessions and statistics.
by Willy Tarreau
· 18 years ago
c0dde7a
[MAJOR] udpated the stats page to clearly distinguish FEs and BEs
by Willy Tarreau
· 18 years ago
e3ba5f0
[CLEANUP] included common/version.h everywhere
by Willy Tarreau
· 18 years ago
baaee00
[BIGMOVE] exploded the monolithic haproxy.c file into multiple files.
by Willy Tarreau
· 18 years ago