
Wire the security check into ORTE's OOB handshake, and add a "version" check to ensure that both ends are from the same ORTE version. If not, report the mismatch and refuse the connection Fixes trac:4171 cmr=v1.7.5:reviewer=jsquyres:subject=Add a security framework for authenticating connections This commit was SVN r30551. The following Trac tickets were found above: Ticket 4171 --> https://svn.open-mpi.org/trac/ompi/ticket/4171
33 строки
561 B
Makefile
33 строки
561 B
Makefile
#
|
|
# Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AM_CPPFLAGS = $(LTDLINCL)
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_sec.la
|
|
libmca_sec_la_SOURCES =
|
|
|
|
# pkgdata setup
|
|
dist_ompidata_DATA =
|
|
|
|
# local files
|
|
headers = sec.h
|
|
libmca_sec_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
opaldir = $(ompiincludedir)/$(subdir)
|
|
nobase_opal_HEADERS = $(headers)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|