00001 #ifndef ISINTF_H
00002 #define ISINTF_H
00003
00004 #include <ctype.h>
00005
00006 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009
00030
00032 typedef struct
00033 {
00034 unsigned short udpport;
00035 unsigned short tcpport;
00036 } is_port_t;
00037
00039 typedef struct
00040 {
00041 int node;
00042 } is_host_t;
00043
00044
00053 int is_get_port( char *proc, is_port_t *pi );
00054
00063 int is_get_host( char *host, is_host_t *ph );
00066 #ifdef __cplusplus
00067 }
00068 #endif
00069
00070 #endif
00071