commit | 378e041797340412cedf14b0b0dd3a85e958ba0b | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Oct 13 14:33:58 2012 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat Oct 13 14:33:58 2012 +0200 |
tree | 1ce359cc8b6486f825e648a8aad6734dc60b276d | |
parent | 109e95a1b4e2d21c111eda6d68c818430bff924c [diff] |
OPTIM: connection: pack the struct target The struct target contains one int and one pointer, causing it to be 64-bit aligned on 64-bit platforms. By marking it "packed", we can save 8 bytes in struct connection and as many in struct session on such platforms.