Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ make install
Usage
=====

ZDNS consists of a recursive resolver [library](github.com/zmap/zdns/src/zdns) and [CLI wrapper](github.com/zmap/zdns/src/cli).
ZDNS consists of a recursive resolver [library](src/zdns) and [CLI wrapper](src/cli).

The library consists of a `ResolverConfig` struct which will contain all config options for all lookups made.
The `ResolverConfig` is used to create 1+ `Resolver` struct(s) which will make all lookups. A `Resolver`
should only make a single lookup at a time (it is not thread-safe) and multiple `Resolver` structs should be
used for parallelism. See our [examples](github.com/zmap/zdns/examples) for how to use the
library. [Modules](github.com/zmap/zdns/src/modules) are used to define the behavior of the lookups.
used for parallelism. See our [examples](examples) for how to use the
library. [Modules](src/modules) are used to define the behavior of the lookups.

ZDNS provides several types of modules:

Expand Down