MINOR: listener/ssl: set the SSL xprt layer only once the whole config is known

We used to preset XPRT_SSL on bind_conf->xprt when parsing the "ssl"
keyword, which required to be careful about what QUIC could have set
before, and which makes it impossible to consider the whole line to
set all options.

Now that we have the BC_O_USE_SSL option on the bind_conf, it becomes
easier to set XPRT_SSL only once the bind_conf's args are parsed.
diff --git a/src/listener.c b/src/listener.c
index 3efe6c1..929c238 100644
--- a/src/listener.c
+++ b/src/listener.c
@@ -1656,6 +1656,9 @@
 		goto out;
 #endif
 	}
+	else if (bind_conf->options & BC_O_USE_SSL) {
+		bind_conf->xprt = xprt_get(XPRT_SSL);
+	}
 
  out:
 	return err_code;