Re: git: e3ac01e18eb3 - main - kgssapi: Fix the kgssapi so that it can use MIT Kerberos
Date: Fri, 08 Aug 2025 04:59:24 UTC
On Thu, Aug 7, 2025 at 2:07 PM Rick Macklem <rmacklem@freebsd.org> wrote: > +enum krb_imp { > + KRBIMP_UNKNOWN, > + KRBIMP_HESIOD1, > + KRBIMP_MIT > +}; > > I only skimmed the diff so far, but I don't think KRBIMP_HESIOD1 makes much sense as a name -- Hesiod is a directory service of sorts that came out of MIT's Project Athena (it uses the "HS" DNS record class and we have an implementation of its functionality in libc) but is otherwise unrelated to Kerberos. Presumably you wanted something Heimdal-ish here? -Ben