mirror of
https://github.com/openvswitch/ovs
synced 2025-08-30 22:05:19 +00:00
stream: By default disable probing on unix sockets.
There isn't a lot of value in sending inactivity probes on unix sockets. This patch changes the default to disable them. Signed-off-by: Ethan Jackson <ethan@nicira.com>
This commit is contained in:
@@ -755,6 +755,7 @@ ssl_wait(struct stream *stream, enum stream_wait_type wait)
|
||||
|
||||
const struct stream_class ssl_stream_class = {
|
||||
"ssl", /* name */
|
||||
true, /* needs_probes */
|
||||
ssl_open, /* open */
|
||||
ssl_close, /* close */
|
||||
ssl_connect, /* connect */
|
||||
@@ -861,6 +862,7 @@ pssl_wait(struct pstream *pstream)
|
||||
|
||||
const struct pstream_class pssl_pstream_class = {
|
||||
"pssl",
|
||||
true,
|
||||
pssl_open,
|
||||
pssl_close,
|
||||
pssl_accept,
|
||||
|
Reference in New Issue
Block a user