2004-09-02 18:20:13 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-23 07:32:36 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-09-02 18:20:13 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/** @file:
|
|
|
|
*
|
|
|
|
* Contains header used by tcp oob.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MCA_OOB_TCP_ADDR_H_
|
|
|
|
#define _MCA_OOB_TCP_ADDR_H_
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte_config.h"
|
2004-10-22 20:06:05 +04:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2004-09-02 18:20:13 +04:00
|
|
|
#include <sys/types.h>
|
2004-10-22 20:06:05 +04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2004-09-02 18:20:13 +04:00
|
|
|
#include <netinet/in.h>
|
2004-10-22 20:06:05 +04:00
|
|
|
#endif
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/dss/dss.h"
|
2005-07-03 20:06:07 +04:00
|
|
|
#include "opal/class/opal_object.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/mca/ns/ns_types.h"
|
2007-04-25 23:08:07 +04:00
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
2007-04-25 05:55:40 +04:00
|
|
|
|
|
|
|
#define MCA_OOB_TCP_ADDR_UNCLASSIFIED 0 /* we don't know anything */
|
|
|
|
#define MCA_OOB_TCP_ADDR_MATCHED 1 /* peer has IP on the same LAN */
|
|
|
|
#define MCA_OOB_TCP_ADDR_IPV6 2 /* peer has an IPv6 address */
|
|
|
|
#define MCA_OOB_TCP_ADDR_IPV4public 4 /* peer has public IPv4 address */
|
|
|
|
|
|
|
|
#define MCA_OOB_TCP_ADDR_TYPE_AFINET 0x01
|
|
|
|
#if OPAL_WANT_IPV6
|
|
|
|
# define MCA_OOB_TCP_ADDR_TYPE_AFINET6 0x02
|
|
|
|
#endif
|
|
|
|
|
2004-09-02 18:20:13 +04:00
|
|
|
/**
|
|
|
|
* Address info published to registry
|
|
|
|
*/
|
|
|
|
struct mca_oob_tcp_addr_t {
|
2005-07-03 20:06:07 +04:00
|
|
|
opal_object_t super;
|
2005-03-14 23:57:21 +03:00
|
|
|
orte_process_name_t addr_name;
|
2006-08-15 23:54:10 +04:00
|
|
|
orte_std_cntr_t addr_count;
|
|
|
|
orte_std_cntr_t addr_next;
|
|
|
|
orte_std_cntr_t addr_alloc;
|
2007-04-25 05:55:40 +04:00
|
|
|
orte_std_cntr_t addr_matched;/* status of already tried address classes */
|
|
|
|
#if OPAL_WANT_IPV6
|
|
|
|
struct sockaddr_in6* addr_inet;
|
|
|
|
#else
|
2004-09-02 18:20:13 +04:00
|
|
|
struct sockaddr_in* addr_inet;
|
2007-04-25 05:55:40 +04:00
|
|
|
#endif
|
2004-09-02 18:20:13 +04:00
|
|
|
};
|
|
|
|
typedef struct mca_oob_tcp_addr_t mca_oob_tcp_addr_t;
|
|
|
|
|
|
|
|
OBJ_CLASS_DECLARATION(mca_oob_tcp_addr_t);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unpack the contact information posted by the peer.
|
|
|
|
*/
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
mca_oob_tcp_addr_t* mca_oob_tcp_addr_unpack(orte_buffer_t*);
|
2004-09-02 18:20:13 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pack this hosts addressing info into a buffer for posting
|
|
|
|
* into the registry.
|
|
|
|
*/
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
int mca_oob_tcp_addr_pack(orte_buffer_t*);
|
2004-09-02 18:20:13 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-04-25 05:55:40 +04:00
|
|
|
#if OPAL_WANT_IPV6
|
|
|
|
int mca_oob_tcp_addr_insert(mca_oob_tcp_addr_t*, const struct sockaddr_in6*);
|
|
|
|
#else
|
2004-09-02 18:20:13 +04:00
|
|
|
int mca_oob_tcp_addr_insert(mca_oob_tcp_addr_t*, const struct sockaddr_in*);
|
2007-04-25 05:55:40 +04:00
|
|
|
#endif
|
2004-09-02 18:20:13 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2007-04-25 05:55:40 +04:00
|
|
|
|
|
|
|
int mca_oob_tcp_addr_get_next(mca_oob_tcp_addr_t*, struct sockaddr_storage*);
|
|
|
|
|
2007-04-25 23:08:07 +04:00
|
|
|
END_C_DECLS
|
2004-09-02 18:20:13 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|