search for: sctp_msg

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

2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...0a2a..42438b2 100644 --- a/configure.ac +++ b/configure.ac @@ -2867,6 +2867,33 @@ if test "x$PAM_MSG" = "xyes" ; then ]) fi +# Check for SCTP support +AC_CHECK_DECL([IPPROTO_SCTP], [have_sctp=yes], , [ + #include <netinet/in.h> + #include <netinet/sctp.h> +]) + +SCTP_MSG="$have_sctp" +AC_ARG_WITH([sctp], + [ --with-sctp Enable SCTP support ], + [ + if test "x$withval" != "xno" ; then + SCTP_MSG="yes" + else + SCTP_MSG="no" + fi + ] +) + +if test "x$SCTP_MSG" = "xyes"; then + i...