History log of /openbsd/usr.bin/dig/lib/dns/rdata/generic/hip_55.c (Results 1 – 15 of 15)
Revision Date Author Comments
# 1fb015a8 14-Sep-2020 florian <florian@openbsd.org>

Mechanically replace isc_boolean_t with int.
OK deraadt


# fbc1dec8 26-Feb-2020 florian <florian@openbsd.org>

no need to go through RETERR when we return a constant


# 873f12b9 26-Feb-2020 florian <florian@openbsd.org>

In preparation of compiling lib/dns/rdata/ files individually we need
global visibility of str_totext.
Rename it to isc_str_tobuffer, put it into buffer.c and delete
duplicate implementations.


# 637d8eb6 26-Feb-2020 florian <florian@openbsd.org>

In preparation of compiling lib/dns/rdata/ files individually we need
global visibility of mem_tobuffer.
Rename it to isc_mem_tobuffer, put it into buffer.c and delete
duplicate implementations.


# abb8b8a3 26-Feb-2020 florian <florian@openbsd.org>

Always printing unknown types as TYPE%u and not sometimes as %u
considerably simplifies dns_rdatatype_attributes() since we then only
care about reserved types.
tweaks jsg


# 4331a4ca 24-Feb-2020 florian <florian@openbsd.org>

Delete a few more fromstruct_*, tostruct_* and freestruct_* functions
missed in previous. Also delete now unused utility functions.


# ee21177a 24-Feb-2020 florian <florian@openbsd.org>

We only need to create cname, ns, soa and tsig structs.
OK jsg


# a5525167 24-Feb-2020 florian <florian@openbsd.org>

We only need to fill a wire format buffer from soa and tsig structs.
OK jsg


# a0b66ce4 24-Feb-2020 florian <florian@openbsd.org>

We only need to free cname, ns, soa and tsig structs.
OK jsg


# 66d1673b 24-Feb-2020 florian <florian@openbsd.org>

We only need to check the owner for nsec3 records, remove all the
rest.
OK jung


# a9a8f5b3 24-Feb-2020 florian <florian@openbsd.org>

We are always preserving the order of records.
This lets us remove compare_* and casecompare_* functions from
RR types.
OK jung


# 2fb68d9f 23-Feb-2020 jung <jung@openbsd.org>

rmeove more unused functions and code

ok florian


# d78b7173 20-Feb-2020 florian <florian@openbsd.org>

We do not generate DNS records from text representations.
OK millert


# 3f2f3b21 12-Feb-2020 jsg <jsg@openbsd.org>

remove some unreferenced functions

ok florian@


# 5185a700 07-Feb-2020 florian <florian@openbsd.org>

Move dig(1) and needed DNS libraries into it's own source directory in
usr.bin/dig.

From the beginning when we started to remove unneeded nameserver code,
it was our goal to extract dig functionalit

Move dig(1) and needed DNS libraries into it's own source directory in
usr.bin/dig.

From the beginning when we started to remove unneeded nameserver code,
it was our goal to extract dig functionality from the bind sources,
for everyone's benefit as this is easier to reason about.

In total we removed about 2/3 or over 300.000 lines of code.

We kept the lib/ subdirectory layout but moved the content of bin/ to
the top from the old bind source directory.

Previous sources and history can be found in the src/usr.sbin/bind
Attic.

With & OK deraadt
Proposed directory layout sounds good to sthen

show more ...