Frank Cusack <[EMAIL PROTECTED]> wrote: > oops, my bad. It is NOT SUSv2 nor POSIX. However, it is a common interface. > At least one unix (digital) apparently has a thread-safe gethostbyaddr().
A number of BSD systems have taken the non-thread-safe fuctions foo(), and replaced them by thread-safe versions foo_r() It's only weird systems like Linux that have thread-safe functions returning pointers to static data. The way the server is written is that it will use the thread-safe versions if they exist. If not, it won't use them. Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
