MEDIUM: stick-tables: flush old entries upon soft-stop

When a process with large stick tables is replaced by a new one and remains
present until the last connection finishes, it keeps these data in memory
for nothing since they will never be used anymore by incoming connections,
except during syncing with the new process. This is especially problematic
when dealing with long session protocols such as WebSocket as it becomes
possible to stack many processes and eat a lot of memory.

So the idea here is to know if a table still needs to be synced or not,
and to purge all unused entries once the sync is complete. This means that
after a few hundred milliseconds when everything has been synchronized with
the new process, only a few entries will remain allocated (only the ones
held by sessions during the restart) and all the remaining memory will be
freed.

Note that we carefully do that only after the grace period is expired so as
not to impact a possible proxy that needs to accept a few more connections
before leaving.

Doing this required to add a sync counter to the stick tables, to know how
many peer sync sessions are still in progress in order not to flush the entries
until all synchronizations are completed.
diff --git a/src/peers.c b/src/peers.c
index 83781ba..7247d76 100644
--- a/src/peers.c
+++ b/src/peers.c
@@ -1401,6 +1401,7 @@
 				/* add DO NOT STOP flag if not present */
 				jobs++;
 				st->flags |= SHTABLE_F_DONOTSTOP;
+				st->table->syncing++;
 			}
 
 			/* disconnect all connected peers */
@@ -1418,6 +1419,7 @@
 				/* resync of new process was complete, current process can die now */
 				jobs--;
 				st->flags &= ~SHTABLE_F_DONOTSTOP;
+				st->table->syncing--;
 			}
 		}
 		else if (!ps->session) {
@@ -1440,6 +1442,7 @@
 					/* unable to resync new process, current process can die now */
 					jobs--;
 					st->flags &= ~SHTABLE_F_DONOTSTOP;
+					st->table->syncing--;
 				}
 			}
 		}