MINOR: tools: add several PA_O_* flags in str2sa_range() callers

These flags indicate whether the call is made to fill a bind or a server
line, or even just send/recv calls (like logs or dns). Some special cases
are made for outgoing FDs (e.g. pipes for logs) or socket FDs (e.g external
listeners), and there's a distinction between stream or dgram usage that's
expected to significantly help str2sa_range() proceed appropriately with
the input information. For now they are not used yet.
diff --git a/src/check.c b/src/check.c
index 423cb4d..21978da 100644
--- a/src/check.c
+++ b/src/check.c
@@ -2639,7 +2639,7 @@
 	}
 
 	sk = str2sa_range(args[*cur_arg+1], NULL, &port1, &port2, errmsg, NULL, NULL,
-	                  PA_O_RESOLVE | PA_O_PORT_OK);
+	                  PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM);
 	if (!sk) {
 		memprintf(errmsg, "'%s' : %s", args[*cur_arg], *errmsg);
 		goto error;