History log of /openbsd-src/usr.bin/dig/lib/isc/unix/socket.c (Results 1 – 21 of 21)
Revision Date Author Comments
# b1a294b5 15-Sep-2020 florian <florian@openbsd.org>

We have sockaddr_storage these days, get rid of isc_sockaddr_t.
OK beck, "beautiful" deraadt


# 8c9fac11 15-Sep-2020 florian <florian@openbsd.org>

The various sockaddr structures have length fields these days.
OK beck


# 1fb015a8 14-Sep-2020 florian <florian@openbsd.org>

Mechanically replace isc_boolean_t with int.
OK deraadt


# 1bf56eb0 14-Sep-2020 florian <florian@openbsd.org>

Bunch of dead stores and otherwise unused stuff lets us get rid of
unix/net.{c.h}. We need to sprinkle in a few #includes that net.h
dragged in.
OK deraadt


# 57b02e75 10-May-2020 otto <otto@openbsd.org>

fix socket_log() calls, EVENT expands to three comma separated
values; spotted by gcc; ok florian@


# 48050c6b 08-May-2020 otto <otto@openbsd.org>

Make sure cmsgbufs are properly aligned by using the idiom from the
CMSG_DATA man page. Avoids SIGBUS on landisk; ok kettenis@ jca@


# 5148cc0d 25-Feb-2020 deraadt <deraadt@openbsd.org>

malloc(a * b) -> reallocarray(NULL, a, b)
ok jsing jca florian


# b9558d14 25-Feb-2020 jsg <jsg@openbsd.org>

reduce multiple newlines


# 4354c957 24-Feb-2020 aoyama <aoyama@openbsd.org>

Fix 'previously declared here' error on gcc3(luna88k).

ok jsg@ florian@ jung@


# bfae7270 22-Feb-2020 jung <jung@openbsd.org>

remove assigned but unused values

ok millert florian


# 8b553854 18-Feb-2020 florian <florian@openbsd.org>

Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros.
While pulling on that it turns out we can / need git rid of a isc_task
-> isc__task, isc_taskmgr -> isc__taskmgr, isc_timer -> isc__timer and
isc_sock

Get rid of ISC_MAGIC and ISC_MAGIC_VALID macros.
While pulling on that it turns out we can / need git rid of a isc_task
-> isc__task, isc_taskmgr -> isc__taskmgr, isc_timer -> isc__timer and
isc_socket -> isc__socket indirection.
OK millert

show more ...


# 960186aa 18-Feb-2020 florian <florian@openbsd.org>

Remove unused task, taskmgr, app, socket and socketmgr methods.
OK millert


# a61b9c11 17-Feb-2020 jung <jung@openbsd.org>

remove unused code

ok florian


# 7238a213 16-Feb-2020 florian <florian@openbsd.org>

Replace isc_time_t and interval_t with struct timespec.
Input & OK millert


# 5cbe9ad1 15-Feb-2020 jsg <jsg@openbsd.org>

remove unused lockid var and FDLOCK_ID macro


# 40adc7c5 13-Feb-2020 jung <jung@openbsd.org>

threads are gone, replace thread safe isc__strerror() wrapper
with strerror() and drop it

ok millert florian


# 87f06ebf 13-Feb-2020 florian <florian@openbsd.org>

expand ISC_FORMAT_PRINTF and get rid of formatcheck.h


# 33716e82 13-Feb-2020 jsg <jsg@openbsd.org>

remove unused macros

ok florian@


# e49c1783 11-Feb-2020 jsg <jsg@openbsd.org>

remove uneeded #include lines

ok florian@


# 77d84324 11-Feb-2020 florian <florian@openbsd.org>

unifdef feature checks; we have all these things.
OK millert


# 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 ...