1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#
# $Id: README,v 1.6 2004/11/10 15:37:32 evertonm Exp $
#
addrsolver3.c
- one event source for each query
- one resolver for each query
- NOT prone to input overload
- useful for memory leak testing
addrsolver2.c
- one event source across queries
- one resolver for each query
- NOT prone to input overload
- useful for memory leak testing
addrsolver.c
- one event source across queries
- one resolver across queries
- NOT prone to input overload
- useful for memory leak testing
srvsolver2.c
- query SRV records "almost" asynchronously
- NOT prone to input overload
- useful for memory leak testing
ruli-host.c
- query address records "almost" asynchronously
- NOT prone to input overload
- useful for ruli_host testing (asynchronous,
address-family-agnostic layer)
hostsolver.c
- translates hostnames to addresses asynchronously
- prone to input overload
- uses output queue
- useful for testing asynchronous resolver behavior
srvsolver.c
- query SRV records asynchronously
- prone to input overload
- useful for testing asynchronous SRV behavior
resolve.c
- perform an arbitrary query synchronously
- can resubmit a query mutiple times
- doesn't parse the answer
- useful for very basic query submission testing
syncsolver.c
- query SRV records synchronously
- useful for testing synchronous API
list.c
- test for ruli_list_t data structures
stdin_domains.c
- auxiliar functions to monitor stdin for input
stdout_srv_list.c
- auxiliar function to output SRV records
ipv6.c
- test for IPv6 helper functions
|