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_
|
|
|
|
|
|
|
|
#include "ompi_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
|
2004-09-02 18:20:13 +04:00
|
|
|
#include "class/ompi_object.h"
|
2004-09-20 23:55:01 +04:00
|
|
|
#include "util/bufpack.h"
|
2004-09-02 18:20:13 +04:00
|
|
|
#include "mca/ns/ns.h"
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-09-02 18:20:13 +04:00
|
|
|
/**
|
|
|
|
* Address info published to registry
|
|
|
|
*/
|
|
|
|
struct mca_oob_tcp_addr_t {
|
|
|
|
ompi_object_t super;
|
|
|
|
ompi_process_name_t addr_name;
|
|
|
|
uint32_t addr_count;
|
|
|
|
uint32_t addr_next;
|
|
|
|
uint32_t addr_alloc;
|
|
|
|
struct sockaddr_in* addr_inet;
|
|
|
|
};
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mca_oob_tcp_addr_t* mca_oob_tcp_addr_unpack(ompi_buffer_t);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pack this hosts addressing info into a buffer for posting
|
|
|
|
* into the registry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void mca_oob_tcp_addr_pack(ompi_buffer_t);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int mca_oob_tcp_addr_insert(mca_oob_tcp_addr_t*, const struct sockaddr_in*);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int mca_oob_tcp_addr_get_next(mca_oob_tcp_addr_t*, struct sockaddr_in*);
|
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-09-02 18:20:13 +04:00
|
|
|
#endif
|
|
|
|
|