forked from achernya/hesiod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
75 lines (68 loc) · 3.49 KB
/
NEWS
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
Major changes in release 3.2.0:
* Entirely rewrite the buildsystem to use automake.
* Incorporate 3 patches from Fedora, fixing issues when libhesiod was
used from setuid programs, the response from the DNS server was
longer than 1024 bytes, and in which string lengths were ignored
while doing a case-insensitive comparison.
* Ship with Debian packaging.
Major changes in release 3.1.1:
* If available, libhesiod will use libidn to internationalize a domain
name before returning it from hesiod_to_bind()
* LDFLAGS as set by autoconf aren't ignored when building hestest or
libhesiod
Major changes in release 3.1.0:
* hesinfo has been moved into a separate source tree.
* The build system now installs a shared library by default.
* A new function, hesiod_free_string, ensures that strings can be
freed at the same library level as they are allocated. (Important
in some runtime environments.)
* A new function, hesiod_parse_result, can be used in combination with
hesiod_to_bind to allow Hesiod resolutions to be done using an
alternate resolver.
* Support for class HS is removed; Hesiod resolution is always done in
class IN now.
Major changes in release 3.0.2:
* Better observance of Autoconf environment variable conventions (you
can set CPPFLAGS, CFLAGS, LDFLAGS, and LIBS). CDEBUGFLAGS is gone;
CFLAGS specifies debugging and optimization flags only.
* Bugs fixed: "make clean" missed config.h, hesiod_to_bind() would
core dump on names with right hand sides, hesiod_to_bind() didn't
length-check its arguments.
Major changes in release 3.0.1:
* hes_init() function added to backward compatibility interfaces.
* You can use "#ifdef HESIOD_INTERFACES" in an application to test if
the new interfaces are available.
Major changes in release 3.0.0:
* This NEWS file added.
* Wire protocol change: Hesiod data on the name servers should now be
in class C_IN, not C_HS. Data in class C_HS will still work for
now, but this backward compatibility hack may not stick around
forever. (You can specify which classes to look at in your
hesiod.conf file.)
* Interface change: the preferred interfaces are now named
hesiod_*() and take a context argument. They also return allocated
memory which must be freed by the caller. The *_r() interfaces are
gone, and the hes_*() interfaces are deprecated.
* Hesiod no longer looks for /etc/hesiod.conf (unless sysconfdir is
/etc). It does, however, allow the environment variable
HESIOD_CONFIG to specify where the configuration file lives.
* hesiod.conf is no longer case-sensitive.
* Hesiod compiles on systems which don't define C_HS or T_TXT.
* Bugs fixed: "hesinfo -b" works, better length-checking on response
packets, string termination error in configuration file reading,
README left out periods in sample rhs and lhs values, "make check"
didn't set fixed hesiod configuration, manual pages weren't
installed.
Major changes in release 2.0.0:
* The hesiod.3 man page now documents all exported functions.
* Reentrant interfaces were added to the API. See the man page for
details.
* hes_strerror() was added to the API.
* Function prototypes were added to <hesiod.h>. Hesiod now assumes a
compiler which can handle most ANSI constructs.
* Bugs fixed: memory leaks in hes_getpwnam(), hes_getmailhost,
hes_getservbyname(); bounds checking added in res_scan().
* Hesiod builds with Autoconf instead of imake now.
* An automated test driver is included.
* The maximum Hesiod response length is no longer coupled to the DNS
datagram transport size limit.