home *** CD-ROM | disk | FTP | other *** search
- /*
- ** Patched for MS-DOS compatibility by Stephen Trier March, April and
- ** May, 1990. This file is in the public domain.
- */
-
- #ifndef lint
- static char *sccsid="@(#)map.c 2.5 (smail) 9/15/87";
- #endif
-
- # include <stdio.h>
- # include <sys/types.h>
- # include "defs.h"
-
- extern int queuecost;
- #ifdef MSDOS
- extern enum erouting routing, routelevel; /* Use to check on rerouting */
- #endif
-
- /*
- **
- ** map(): map addresses into <host, user, form, cost> sets.
- **
- ** Calls resolve() for each address of argv. The result is hostv and
- ** userv arrays (pointing into buffers userz and hostz), and formv array.
- **
- */
-
- map(argc, argv, hostv, userv, formv, costv)
- int argc; /* address count */
- char **argv; /* address vector */
- char *hostv[]; /* remote host vector */
- char *userv[]; /* user name vector */
- enum eform formv[]; /* address format vector */
- int costv[]; /* cost vector */
- {
- int i, cost;
- enum eform resolve();
- char *c;
- static char userbuf[BIGBUF], *userz;
- static char hostbuf[BIGBUF], *hostz;
-
- userz = userbuf;
- hostz = hostbuf;
-
- for( i=0; i<argc; i++ ) {
- #ifdef MSDOS
- /*
- * We only want to do routing if this is the first pass
- * or the message has not gotten through yet.
- */
-
- if ((routing == routelevel) || (formv[i] != SENT)) {
- #endif /* MSDOS */
- #ifdef DEFQUEUE
- cost = queuecost+1; /* default is queueing */
- #else
- cost = queuecost-1; /* default is no queueing */
- #endif
- userv[i] = userz; /* put results here */
- hostv[i] = hostz;
- if ( **argv == '(' ) { /* strip () */
- ++*argv;
- c = index( *argv, ')' );
- if (c)
- *c = '\0';
- }
- /* here it comes! */
- formv[i] = resolve(*argv++, hostz, userz, &cost);
- costv[i] = cost;
- userz += strlen( userz ) + 1; /* skip past \0 */
- hostz += strlen( hostz ) + 1;
- #ifdef MSDOS
- } else {
- argv++;
- }
- #endif
- }
- }