c782c98433
This commit was SVN r22399.
40 строки
674 B
C
40 строки
674 B
C
/*
|
|
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
/**
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
#ifndef ORTE_RMCAST_UDP_H
|
|
#define ORTE_RMCAST_UDP_H
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "orte/mca/rmcast/rmcast.h"
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
#define ORTE_RMCAST_UDP_MAX_MSG_SIZE 1500
|
|
|
|
typedef struct {
|
|
orte_rmcast_base_component_t super;
|
|
int max_msg_size;
|
|
} orte_rmcast_udp_component_t;
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_rmcast_udp_component_t mca_rmcast_udp_component;
|
|
extern orte_rmcast_module_t orte_rmcast_udp_module;
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|