commit | d8375891fcd48ecd5069a7d6838d6e07b5cf06b0 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jan 21 11:01:08 2014 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sun Jan 26 00:42:31 2014 +0100 |
tree | 572d4cc53879f3537f5731154af013c3bf2e7fc6 | |
parent | 798c3c9c4161576835fe89ca13bf59040645c924 [diff] |
MEDIUM: connection: no need to recheck FD state We already have everything in the connection flags using the CO_FL_DATA_*_ENA bits combined with the fd's ready state, so we do not need to check fdtab[fd].ev anymore. This considerably simplifies the connection handling logic since it doesn't have to mix connection flags with past polling states.