2004-01-14 18:24:30 +00:00
|
|
|
/* @file */
|
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#ifndef _OMPI_IF_UTIL_
|
|
|
|
#define _OMPI_IF_UTIL_
|
2004-01-14 18:24:30 +00:00
|
|
|
|
2004-10-20 01:03:09 +00:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2004-01-15 17:43:54 +00:00
|
|
|
#include <sys/types.h>
|
2004-10-20 01:03:09 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
2004-01-15 17:43:54 +00:00
|
|
|
#include <sys/socket.h>
|
2004-10-20 01:03:09 +00:00
|
|
|
#endif
|
2004-01-15 17:43:54 +00:00
|
|
|
|
2004-01-14 18:24:30 +00:00
|
|
|
/**
|
|
|
|
* Lookup an interface by name and return its primary address.
|
|
|
|
*
|
|
|
|
* @param if_name (IN) Interface name
|
|
|
|
* @param if_addr (OUT) Interface address buffer
|
|
|
|
* @param size (IN) Interface address buffer size
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifnametoaddr(const char* if_name, struct sockaddr*, int);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup an interface by address and return its name.
|
|
|
|
*
|
|
|
|
* @param if_name (IN) Interface address
|
|
|
|
* @param if_addr (OUT) Interface name buffer
|
|
|
|
* @param size (IN) Interface name buffer size
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifaddrtoname(const char* if_addr, char* if_name, int);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup an interface by name and return its kernel index.
|
|
|
|
*
|
|
|
|
* @param if_name (IN) Interface name
|
|
|
|
* @return Interface index
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifnametoindex(const char* if_name);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of available interfaces.
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifcount(void);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the index of the first available interface.
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifbegin(void);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup the current position in the interface list by
|
|
|
|
* index and return the next available index (if it exists).
|
|
|
|
*
|
|
|
|
* @param if_index Returns the next available index from the
|
|
|
|
* current position.
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifnext(int if_index);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup an interface by index and return its name.
|
|
|
|
*
|
|
|
|
* @param if_index (IN) Interface index
|
|
|
|
* @param if_name (OUT) Interface name buffer
|
|
|
|
* @param size (IN) Interface name buffer size
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifindextoname(int if_index, char* if_name, int);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup an interface by index and return its primary address .
|
|
|
|
*
|
|
|
|
* @param if_index (IN) Interface index
|
|
|
|
* @param if_name (OUT) Interface address buffer
|
|
|
|
* @param size (IN) Interface address buffer size
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifindextoaddr(int if_index, struct sockaddr*, int);
|
2004-01-14 18:24:30 +00:00
|
|
|
|
2004-01-26 18:41:37 +00:00
|
|
|
/**
|
|
|
|
* Lookup an interface by index and return its network mask.
|
|
|
|
*
|
|
|
|
* @param if_index (IN) Interface index
|
|
|
|
* @param if_name (OUT) Interface address buffer
|
|
|
|
* @param size (IN) Interface address buffer size
|
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
int ompi_ifindextomask(int if_index, struct sockaddr*, int);
|
2004-01-26 18:41:37 +00:00
|
|
|
|
2004-01-14 18:24:30 +00:00
|
|
|
#endif
|
|
|
|
|