README.txt 818 B

123456789101112131415161718192021
  1. This directory contains a pure-pascal netdb implementation:
  2. It is written mainly to be able to implement network applications that
  3. do hostname lookups independent of the C library.
  4. The uriparser unit contains a parser for URI strings: It decomposes the URI
  5. in its various elements. The opposite can also be done: from various
  6. elements create a complete URI
  7. This provides the equivalent of the Inet unit, but the implementation is
  8. written completely in pascal. It parses the hosts,services and networks
  9. files just as the C library does (it should, anyway).
  10. The DNS routines also do a DNS lookup and parse /etc/resolv.conf
  11. The 'domain' and 'search' entries in this file are parsed, but ignored.
  12. Only the 'nameserver' entries are used at the moment.
  13. The various test programs show how to use this.
  14. Enjoy!
  15. Michael.