commit | 51cd5956ee9c377dc4f2665eefadda9638d3b0d7 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jun 05 12:25:38 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu Jun 11 10:18:58 2020 +0200 |
tree | 05e3f9a82d1d37ffd37c016033ef6f0d8d2f5ddf | |
parent | cee013e4e018493003efc4fac3efcd4b22fa59ba [diff] |
REORG: check: move tcpchecks away from check.c Checks.c remains one of the largest file of the project and it contains too many things. The tcpchecks code represents half of this file, and both parts are relatively isolated, so let's move it away into its own file. We now have tcpcheck.c, tcpcheck{,-t}.h. Doing so required to export quite a number of functions because check.c has almost everything made static, which really doesn't help to split!