They are optional and can be used to describe how HAProxy should open and
use the TCP connection.
+ default Use default options of the server line to do the health
+ checks. This parameter is exclusive with all other options.
+
port if not set, check port or server port is used.
It tells HAProxy where to open the connection to.
<port> must be a valid TCP port source integer, from 1 to 65535.
cur_arg++;
while (*(args[cur_arg])) {
- if (strcmp(args[cur_arg], "port") == 0) {
+ if (strcmp(args[cur_arg], "default") == 0) {
+ if (cur_arg != 2 || *(args[cur_arg+1])) {
+ memprintf(errmsg, "'%s' is exclusive with all other options", args[cur_arg]);
+ goto error;
+ }
+ conn_opts = TCPCHK_OPT_DEFAULT_CONNECT;
+ }
+ else if (strcmp(args[cur_arg], "port") == 0) {
if (!*(args[cur_arg+1])) {
memprintf(errmsg, "'%s' expects a port number as argument.", args[cur_arg]);
goto error;
#ifdef USE_OPENSSL
", 'ssl', 'sni', 'alpn'"
#endif /* USE_OPENSSL */
- " or 'via-socks4', 'linger' but got '%s' as argument.",
+ " or 'via-socks4', 'linger', 'default' but got '%s' as argument.",
args[cur_arg]);
goto error;
}