2009-05-27 18:32:30 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OMPI_INET_H
|
|
|
|
#define OMPI_INET_H
|
|
|
|
|
2009-06-01 23:16:00 +04:00
|
|
|
#include "opal_config.h"
|
|
|
|
|
|
|
|
#ifndef OMPI_WIN_COMPAT_H
|
|
|
|
#error This file is supposed to be included only from win_compat.h
|
|
|
|
#endif /* OMPI_WIN_COMPAT_H */
|
2009-05-27 18:32:30 +04:00
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
BEGIN_C_DECLS
|
2009-05-27 18:32:30 +04:00
|
|
|
|
2011-08-31 16:49:08 +04:00
|
|
|
OPAL_DECLSPEC int ompi_inet_pton(int af, const char *src, void *dst);
|
2009-06-01 23:16:00 +04:00
|
|
|
|
2011-08-31 16:49:08 +04:00
|
|
|
OPAL_DECLSPEC const char *ompi_inet_ntop(int af, const void *src, char *dst, size_t size);
|
2009-05-27 18:32:30 +04:00
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
END_C_DECLS
|
2009-05-27 18:32:30 +04:00
|
|
|
|
|
|
|
#endif /* OMPI_INET_H */
|