├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── README.md ├── autogen.sh ├── configure.ac ├── debian ├── README.debian ├── changelog ├── compat ├── control ├── copyright ├── hesiod.dirs ├── hesiod.install ├── hesiod.links ├── libhesiod-dev.install ├── libhesiod-dev.links ├── libhesiod0.config ├── libhesiod0.docs ├── libhesiod0.install ├── libhesiod0.postinst ├── libhesiod0.postrm ├── libhesiod0.templates ├── po │ ├── POTFILES.in │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── es.po │ ├── eu.po │ ├── fi.po │ ├── fr.po │ ├── gl.po │ ├── it.po │ ├── ja.po │ ├── nb.po │ ├── nl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ru.po │ ├── sv.po │ ├── templates.pot │ └── vi.po ├── rules └── source │ └── format ├── m4 └── .gitignore ├── man ├── Makefile.am ├── hesinfo.1 ├── hesiod.3 ├── hesiod.conf.5 ├── hesiod_end.3 ├── hesiod_free_list.3 ├── hesiod_free_passwd.3 ├── hesiod_free_postoffice.3 ├── hesiod_free_servent.3 ├── hesiod_free_string.3 ├── hesiod_getmailhost.3 ├── hesiod_getpwnam.3 ├── hesiod_getpwuid.3 ├── hesiod_getservbyname.3 ├── hesiod_init.3 ├── hesiod_parse_result.3 ├── hesiod_resolve.3 └── hesiod_to_bind.3 └── src ├── .gitignore ├── Makefile.am ├── hesinfo ├── .gitignore ├── Makefile.am └── hesinfo.c ├── hesiod.pc.in └── lib ├── .gitignore ├── Makefile.am ├── hescompat.c ├── hesiod.c ├── hesiod.conf.sample ├── hesiod.h ├── hesmailhost.c ├── hespwnam.c ├── hesservbyname.c ├── hestest.c └── hestest.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/README.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/README.debian -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/hesiod.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/hesiod.dirs -------------------------------------------------------------------------------- /debian/hesiod.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/hesiod.install -------------------------------------------------------------------------------- /debian/hesiod.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/hesiod.links -------------------------------------------------------------------------------- /debian/libhesiod-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod-dev.install -------------------------------------------------------------------------------- /debian/libhesiod-dev.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod-dev.links -------------------------------------------------------------------------------- /debian/libhesiod0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod0.config -------------------------------------------------------------------------------- /debian/libhesiod0.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod0.docs -------------------------------------------------------------------------------- /debian/libhesiod0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod0.install -------------------------------------------------------------------------------- /debian/libhesiod0.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod0.postinst -------------------------------------------------------------------------------- /debian/libhesiod0.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod0.postrm -------------------------------------------------------------------------------- /debian/libhesiod0.templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/libhesiod0.templates -------------------------------------------------------------------------------- /debian/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | [type: gettext/rfc822deb] libhesiod0.templates 2 | -------------------------------------------------------------------------------- /debian/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/cs.po -------------------------------------------------------------------------------- /debian/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/da.po -------------------------------------------------------------------------------- /debian/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/de.po -------------------------------------------------------------------------------- /debian/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/es.po -------------------------------------------------------------------------------- /debian/po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/eu.po -------------------------------------------------------------------------------- /debian/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/fi.po -------------------------------------------------------------------------------- /debian/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/fr.po -------------------------------------------------------------------------------- /debian/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/gl.po -------------------------------------------------------------------------------- /debian/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/it.po -------------------------------------------------------------------------------- /debian/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/ja.po -------------------------------------------------------------------------------- /debian/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/nb.po -------------------------------------------------------------------------------- /debian/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/nl.po -------------------------------------------------------------------------------- /debian/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/pt.po -------------------------------------------------------------------------------- /debian/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/pt_BR.po -------------------------------------------------------------------------------- /debian/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/ru.po -------------------------------------------------------------------------------- /debian/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/sv.po -------------------------------------------------------------------------------- /debian/po/templates.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/templates.pot -------------------------------------------------------------------------------- /debian/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/po/vi.po -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/hesinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesinfo.1 -------------------------------------------------------------------------------- /man/hesiod.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod.3 -------------------------------------------------------------------------------- /man/hesiod.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod.conf.5 -------------------------------------------------------------------------------- /man/hesiod_end.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_end.3 -------------------------------------------------------------------------------- /man/hesiod_free_list.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_free_list.3 -------------------------------------------------------------------------------- /man/hesiod_free_passwd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_free_passwd.3 -------------------------------------------------------------------------------- /man/hesiod_free_postoffice.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_free_postoffice.3 -------------------------------------------------------------------------------- /man/hesiod_free_servent.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_free_servent.3 -------------------------------------------------------------------------------- /man/hesiod_free_string.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_free_string.3 -------------------------------------------------------------------------------- /man/hesiod_getmailhost.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_getmailhost.3 -------------------------------------------------------------------------------- /man/hesiod_getpwnam.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_getpwnam.3 -------------------------------------------------------------------------------- /man/hesiod_getpwuid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_getpwuid.3 -------------------------------------------------------------------------------- /man/hesiod_getservbyname.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_getservbyname.3 -------------------------------------------------------------------------------- /man/hesiod_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_init.3 -------------------------------------------------------------------------------- /man/hesiod_parse_result.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_parse_result.3 -------------------------------------------------------------------------------- /man/hesiod_resolve.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_resolve.3 -------------------------------------------------------------------------------- /man/hesiod_to_bind.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/man/hesiod_to_bind.3 -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | hesiod.pc 2 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/hesinfo/.gitignore: -------------------------------------------------------------------------------- 1 | hesinfo 2 | -------------------------------------------------------------------------------- /src/hesinfo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/hesinfo/Makefile.am -------------------------------------------------------------------------------- /src/hesinfo/hesinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/hesinfo/hesinfo.c -------------------------------------------------------------------------------- /src/hesiod.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/hesiod.pc.in -------------------------------------------------------------------------------- /src/lib/.gitignore: -------------------------------------------------------------------------------- 1 | hestest 2 | -------------------------------------------------------------------------------- /src/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/Makefile.am -------------------------------------------------------------------------------- /src/lib/hescompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hescompat.c -------------------------------------------------------------------------------- /src/lib/hesiod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hesiod.c -------------------------------------------------------------------------------- /src/lib/hesiod.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hesiod.conf.sample -------------------------------------------------------------------------------- /src/lib/hesiod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hesiod.h -------------------------------------------------------------------------------- /src/lib/hesmailhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hesmailhost.c -------------------------------------------------------------------------------- /src/lib/hespwnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hespwnam.c -------------------------------------------------------------------------------- /src/lib/hesservbyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hesservbyname.c -------------------------------------------------------------------------------- /src/lib/hestest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hestest.c -------------------------------------------------------------------------------- /src/lib/hestest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achernya/hesiod/HEAD/src/lib/hestest.conf --------------------------------------------------------------------------------