1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2003-2016. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
/***************************************************************************
*
* Compatibility with the old erl_interface library that had some
* undocumented functions.
*
***************************************************************************/
#include "eidef.h"
#include "erl_interface.h"
#include "ei_resolve.h"
#include "ei_connect_int.h"
#include "ei_epmd.h"
struct hostent *erl_gethostbyname(const char *name)
{
return ei_gethostbyname(name);
}
void erl_init_resolve(void)
{
ei_init_resolve();
}
struct hostent *erl_gethostbyaddr(const char *addr, int len, int type)
{
return ei_gethostbyaddr(addr, len, type);
}
struct hostent *erl_gethostbyname_r(const char *name,
struct hostent *hostp,
char *buffer,
int buflen,
int *h_errnop)
{
return ei_gethostbyname_r(name,hostp,buffer,buflen,h_errnop);
}
struct hostent *erl_gethostbyaddr_r(const char *addr,
int length,
int type,
struct hostent *hostp,
char *buffer,
int buflen,
int *h_errnop)
{
return ei_gethostbyaddr_r(addr,length,type,hostp,buffer,buflen,h_errnop);
}
int erl_distversion(int fd)
{
return ei_distversion(fd);
}
int erl_epmd_connect(struct in_addr *inaddr)
{
return ei_epmd_connect_tmo(inaddr,0);
}
int erl_epmd_port(struct in_addr *inaddr, const char *alive, int *dist)
{
return ei_epmd_port(inaddr, alive, dist);
}
/* FIXME !!!!!
erl_epmd_port ei_epmd_port
erl_mutex_lock ei_mutex_lock
erl_malloc erl_free ????
erl_publish erl_unpublish
< extern int erl_epmd_connect(struct in_addr *inaddr);
< extern int erl_epmd_publish(int port, const char *alive);
< extern int erl_epmd_port(struct in_addr *inaddr, const char *alive, int *dist);
< int erl_unpublish(const char *alive)
---
> int ei_unpublish_alive(const char *alive)
erl_self
erl_getfdcookie
*/
|