History log of /openbsd-src/lib/libc/asr/getnameinfo.c (Results 1 – 11 of 11)
Revision Date Author Comments
# 2c53affb 27-Dec-2022 jmc <jmc@openbsd.org>

spelling fixes; from paul tagliamonte
any changes not taken noted on tech, but chiefly here i did not take the
cancelation - cancellation changes;


# caf7b7a2 21-Dec-2020 eric <eric@openbsd.org>

Always call endservent_r() after getservbyport_r().
Fix a memory leak when no entry is matched.

ok florian


# 515e489c 03-Jul-2019 deraadt <deraadt@openbsd.org>

snprintf/vsnprintf return < 0 on error, rather than -1.


# 5f304f5a 02-Oct-2015 deraadt <deraadt@openbsd.org>

make a && && & block more readable. no binary change.
discussed with otto


# 06201dd4 14-Sep-2015 guenther <guenther@openbsd.org>

Finish wrapping <netdb.h> so that calls go direct and the symbols are all weak


# 4945baa2 25-May-2015 eric <eric@openbsd.org>

getnameinfo(3) doesn't need to initialize the resolver when it's only used
for address/port formatting (e.g. NI_NUMERICHOST).

ok deraadt@ jca@


# d216d6b1 26-Mar-2014 eric <eric@openbsd.org>

Make the asr API public. Install asr.h to /usr/include.h and manpages.
Include tweaks suggested by mpi@

ok deraadt@


# 5be03f8f 25-Mar-2014 eric <eric@openbsd.org>

Cleanup and simplify the API to be exposed. Use better names for
structures, functions and defines.

discussed with and ok deraadt@ guenther@


# 5bd9e5c2 12-Jul-2013 eric <eric@openbsd.org>

Make some symbols static and prefix all visible symbols with asr_
to prevent collisions with third-party programs.

suggested by sthen@, ok theo@


# 1ed934d0 27-May-2013 eric <eric@openbsd.org>

Add minimal support for _res setup and update.

Change res_init() to initialize the _res structure on first call, and
udpate the global async context if changes were made by the user. All
resolver fu

Add minimal support for _res setup and update.

Change res_init() to initialize the _res structure on first call, and
udpate the global async context if changes were made by the user. All
resolver functions now call res_init() internally.

fixes issue spotted by otto@

show more ...


# 8082e013 08-Sep-2012 eric <eric@openbsd.org>

split asr_resolver.c into different files to overlay the libc/net
resolver implementation.