search for: listen_via_sctp

Displaying 1 result from an estimated 1 matches for "listen_via_sctp".

2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...erverOptions *, char *, + int, int); /* Use of privilege separation or not */ extern int use_privsep; @@ -153,6 +155,7 @@ initialize_server_options(ServerOptions *options) options->ip_qos_interactive = -1; options->ip_qos_bulk = -1; options->version_addendum = NULL; + options->listen_via_sctp = -1; } void @@ -300,6 +303,9 @@ fill_default_server_options(ServerOptions *options) options->ip_qos_bulk = IPTOS_THROUGHPUT; if (options->version_addendum == NULL) options->version_addendum = xstrdup(""); + if (options->listen_via_sctp == -1) + options->listen...