1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 #ifndef PMIX_PNET_OPA_H
  12 #define PMIX_PNET_OPA_H
  13 
  14 #include <src/include/pmix_config.h>
  15 
  16 
  17 #include "src/mca/pnet/pnet.h"
  18 
  19 BEGIN_C_DECLS
  20 
  21 typedef struct {
  22     pmix_pnet_base_component_t super;
  23     char *static_ports;
  24     char *default_request;
  25     char *incparms;
  26     char *excparms;
  27     char **include;
  28     char **exclude;
  29 } pmix_pnet_tcp_component_t;
  30 
  31 
  32 PMIX_EXPORT extern pmix_pnet_tcp_component_t mca_pnet_tcp_component;
  33 extern pmix_pnet_module_t pmix_tcp_module;
  34 
  35 END_C_DECLS
  36 
  37 #endif