commit | cdbdd52a38c75646cd7a51528e6133a2893c8b55 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Oct 12 22:51:15 2012 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Oct 12 23:02:51 2012 +0200 |
tree | a7aacdc593d6b518db57c9a6445b391a0824a1de | |
parent | 394db379eb303d38bc78baffbe1c6f78de4db4f7 [diff] |
CLEANUP: http: use 'chn' to name channel variables, not 'buf' These "buf" were confusing as they were really refering to channels. At most places, a buffer was really all what was needed, so a struct buffer was used instead. It is possible that the performance has slightly increased by the removal of pointer offset in many pointer operations by directly using the buffer pointer instead of the channel pointer.