[MINOR] add the "nolinger" option to disable data lingering

The following patch will give the ability to tweak socket linger mode.
You can use this option with "option nolinger" inside fronted or backend
configuration declaration.

This will help in environments where lots of FIN_WAIT sockets are
encountered.
diff --git a/src/backend.c b/src/backend.c
index da8b8ac..91c0b34 100644
--- a/src/backend.c
+++ b/src/backend.c
@@ -408,6 +408,9 @@
 	if (s->be->options & PR_O_TCP_SRV_KA)
 		setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
 
+	if (s->be->options & PR_O_TCP_NOLING)
+		setsockopt(fd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
+
 	/* allow specific binding :
 	 * - server-specific at first
 	 * - proxy-specific next