Displaying 1 result from an estimated 1 matches for "add_one_listen_addr_proto".
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...own tokens to ignore */
} Options;
diff --git a/servconf.c b/servconf.c
index 7ba65d5..b106458 100644
--- a/servconf.c
+++ b/servconf.c
@@ -57,6 +57,8 @@
static void add_listen_addr(ServerOptions *, char *, int);
static void add_one_listen_addr(ServerOptions *, char *, int);
+static void add_one_listen_addr_proto(ServerOptions *, 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-&g...