1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #ifndef PMIX_PTL_TCP_H
22 #define PMIX_PTL_TCP_H
23
24 #ifdef HAVE_NETINET_IN_H
25 #include <netinet/in.h>
26 #endif
27 #ifdef HAVE_ARPA_INET_H
28 #include <arpa/inet.h>
29 #endif
30 #ifdef HAVE_NETDB_H
31 #include <netdb.h>
32 #endif
33
34 #include "src/mca/ptl/ptl.h"
35
36 BEGIN_C_DECLS
37
38 typedef struct {
39 pmix_ptl_base_component_t super;
40 char *session_tmpdir;
41 char *system_tmpdir;
42 char *if_include;
43 char *if_exclude;
44 int ipv4_port;
45 int ipv6_port;
46 bool disable_ipv4_family;
47 bool disable_ipv6_family;
48 struct sockaddr_storage connection;
49 char *session_filename;
50 char *nspace_filename;
51 char *system_filename;
52 char *rendezvous_filename;
53 int wait_to_connect;
54 int max_retries;
55 char *report_uri;
56 bool remote_connections;
57 int handshake_wait_time;
58 int handshake_max_retries;
59 } pmix_ptl_tcp_component_t;
60
61 extern pmix_ptl_tcp_component_t mca_ptl_tcp_component;
62
63 extern pmix_ptl_module_t pmix_ptl_tcp_module;
64
65 END_C_DECLS
66
67 #endif