summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
f82b521)
General Improvements:
* adnshost has --config option for overriding configuration.
+ * Improvements to adnslogres (incl. new -c option) from Tony Finch.
* Regression tests now include `adnshost' invocations.
* Test cancellation both before and after query completion.
@@ -25,7 +26,6 @@
* Kill bogus warning, adh-main.c: `arg2' might be used uninitialized ...
* Add extra {...} near adnslogres.c:167 to kill spurious warning.
* Use `printf' instead of `echo -n'.
-
--
General Improvements:
* adnshost has --config option for overriding configuration.
General Improvements:
* adnshost has --config option for overriding configuration.
+ * Improvements to adnslogres (incl. new -c option) from Tony Finch.
* Regression tests now include `adnshost' invocations.
* Test cancellation both before and after query completion.
* Regression tests now include `adnshost' invocations.
* Test cancellation both before and after query completion.
* Kill bogus warning, adh-main.c: `arg2' might be used uninitialized ...
* Add extra {...} near adnslogres.c:167 to kill spurious warning.
* Use `printf' instead of `echo -n'.
* Kill bogus warning, adh-main.c: `arg2' might be used uninitialized ...
* Add extra {...} near adnslogres.c:167 to kill spurious warning.
* Use `printf' instead of `echo -n'.
*/
static const char * const cvsid =
*/
static const char * const cvsid =
- "$Id: adnslogres.c,v 1.14 2000/09/16 19:15:10 ian Exp $";
+ "$Id: adnslogres.c,v 1.15 2000/09/16 19:29:22 ian Exp $";
#include <sys/types.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/time.h>
#include "adns.h"
/* maximum number of concurrent DNS queries */
#include "adns.h"
/* maximum number of concurrent DNS queries */
+#define MAXMAXPENDING 64000
+#define DEFMAXPENDING 2000
/* maximum length of a line */
#define MAXLINE 1024
/* maximum length of a line */
#define MAXLINE 1024
-static void proclog(FILE *inf, FILE *outf, int opts) {
+static void proclog(FILE *inf, FILE *outf, int maxpending, int opts) {
int eof, err, len;
adns_state adns;
adns_answer *answer;
int eof, err, len;
adns_state adns;
adns_answer *answer;
head= tail= readline(inf, adns, opts);
len= 1; eof= 0;
while (head) {
head= tail= readline(inf, adns, opts);
len= 1; eof= 0;
while (head) {
- if (opts & OPT_DEBUG)
- msg("%d in queue; checking %.*s", len,
- head->rest-head->addr, guard_null(head->addr));
- if (eof || len > MAXPENDING) {
- if (opts & OPT_POLL)
- err= adns_wait_poll(adns, &head->query, &answer, NULL);
- else
- err= adns_wait(adns, &head->query, &answer, NULL);
- } else {
- err= adns_check(adns, &head->query, &answer, NULL);
- }
- if (err != EAGAIN) {
+ while (head) {
+ if (opts & OPT_DEBUG)
+ msg("%d in queue; checking %.*s", len,
+ head->rest-head->addr, guard_null(head->addr));
+ if (eof || len > maxpending) {
+ if (opts & OPT_POLL)
+ err= adns_wait_poll(adns, &head->query, &answer, NULL);
+ else
+ err= adns_wait(adns, &head->query, &answer, NULL);
+ } else {
+ err= adns_check(adns, &head->query, &answer, NULL);
+ }
+ if (err == EAGAIN) break;
printline(outf, head->start, head->addr, head->rest,
answer->status == adns_s_ok ? *answer->rrs.str : NULL);
line= head; head= head->next;
printline(outf, head->start, head->addr, head->rest,
answer->status == adns_s_ok ? *answer->rrs.str : NULL);
line= head; head= head->next;
}
if (!eof) {
line= readline(inf, adns, opts);
}
if (!eof) {
line= readline(inf, adns, opts);
+ if (line) {
+ if (!head) head= line;
+ else tail->next= line;
+ tail= line; len++;
+ } else {
- else {
- if (!head)
- head= line;
- else
- tail->next= line;
- tail= line;
- len++;
}
static void usage(void) {
}
static void usage(void) {
- fprintf(stderr, "usage: %s [-d] [-p] [logfile]\n", progname);
+ fprintf(stderr, "usage: %s [-d] [-p] [-c concurrency] [logfile]\n", progname);
exit(1);
}
int main(int argc, char *argv[]) {
exit(1);
}
int main(int argc, char *argv[]) {
+ int c, opts, maxpending;
+ extern char *optarg;
FILE *inf;
progname= strrchr(*argv, '/');
FILE *inf;
progname= strrchr(*argv, '/');
progname++;
else
progname= *argv;
progname++;
else
progname= *argv;
- while ((c= getopt(argc, argv, "dp")) != -1)
+ maxpending= DEFMAXPENDING;
+ opts= 0;
+ while ((c= getopt(argc, argv, "c:dp")) != -1)
+ case 'c':
+ maxpending= atoi(optarg);
+ if (maxpending < 1 || maxpending > MAXMAXPENDING) {
+ fprintf(stderr, "%s: unfeasible concurrency %d\n", progname, maxpending);
+ exit(1);
+ }
+ break;
case 'd':
opts|= OPT_DEBUG;
break;
case 'd':
opts|= OPT_DEBUG;
break;
if (!inf)
aargh("couldn't open input");
if (!inf)
aargh("couldn't open input");
- proclog(inf, stdout, opts);
+ proclog(inf, stdout, maxpending, opts);
if (fclose(inf))
aargh("fclose input");
if (fclose(inf))
aargh("fclose input");