2014-02-04 01:38:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPAL_SEC_KEYSTONE_H
|
|
|
|
#define OPAL_SEC_KEYSTONE_H
|
|
|
|
|
|
|
|
#include "opal/mca/sec/sec.h"
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2014-02-12 22:06:44 +00:00
|
|
|
typedef struct {
|
|
|
|
opal_sec_base_component_t super;
|
|
|
|
char *url;
|
|
|
|
} mca_sec_keystone_component_t;
|
2014-02-04 01:38:45 +00:00
|
|
|
|
2014-02-12 22:06:44 +00:00
|
|
|
OPAL_MODULE_DECLSPEC extern mca_sec_keystone_component_t mca_sec_keystone_component;
|
2014-02-04 01:38:45 +00:00
|
|
|
OPAL_DECLSPEC extern opal_sec_base_module_t opal_sec_keystone_module;
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
|
|
|
#endif /* OPAL_SEC_KEYSTONE_H */
|