2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 09:58:01 +00:00

ovsdb: jsonrpc-server: Fix the DSCP value in default options.

The DSCP_DEFAULT is not zero and is a value that supposed
to be used for all connections by default.

Fixes: f125905cdd3d ("Allow configuring DSCP on controller and manager connections.")
Acked-by: Mike Pattrick <mkp@redhat.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
This commit is contained in:
Ilya Maximets 2023-12-14 02:04:06 +01:00
parent d07a3b798d
commit e951af81cb

View File

@ -215,6 +215,7 @@ ovsdb_jsonrpc_default_options(const char *target)
options->probe_interval = (stream_or_pstream_needs_probes(target)
? RECONNECT_DEFAULT_PROBE_INTERVAL
: 0);
options->dscp = DSCP_DEFAULT;
return options;
}