blob: 6f08dead0e73ae77c1d412387e955e243f0e25ce (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright (c) 1998-2000 Sendmail, Inc. and its suppliers.
* All rights reserved.
* Copyright (c) 1983, 1995-1997 Eric P. Allman. All rights reserved.
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
*/
#ifndef lint
static char id[] = "@(#)$Id: trace.c,v 8.20.22.2 2000/09/17 17:04:27 gshapiro Exp $";
#endif /* ! lint */
#include <sendmail.h>
/*
** TtSETUP -- set up for trace package.
**
** Parameters:
** vect -- pointer to trace vector.
** size -- number of flags in trace vector.
** defflags -- flags to set if no value given.
**
** Returns:
** none
**
** Side Effects:
** environment is set up.
*/
static u_char *tTvect;
static int tTsize;
static char *DefFlags;
void
tTsetup(vect, size, defflags)
u_char *vect;
int size;
char *defflags;
{
tTvect = vect;
tTsize = size;
DefFlags = defflags;
}
/*
** TtFLAG -- process an external trace flag description.
**
** Parameters:
** s -- the trace flag.
**
** Returns:
** none.
**
** Side Effects:
** sets/clears trace flags.
*/
void
tTflag(s)
register char *s;
{
int first, last;
register unsigned int i;
if (*s == '\0')
s = DefFlags;
for (;;)
{
/* find first flag to set */
i = 0;
while (isascii(*s) && isdigit(*s))
i = i * 10 + (*s++ - '0');
first = i;
/* find last flag to set */
if (*s == '-')
{
i = 0;
while (isascii(*++s) && isdigit(*s))
i = i * 10 + (*s - '0');
}
last = i;
/* find the level to set it to */
i = 1;
if (*s == '.')
{
i = 0;
while (isascii(*++s) && isdigit(*s))
i = i * 10 + (*s - '0');
}
/* clean up args */
if (first >= tTsize)
first = tTsize - 1;
if (last >= tTsize)
last = tTsize - 1;
/* set the flags */
while (first <= last)
tTvect[first++] = i;
/* more arguments? */
if (*s++ == '\0')
return;
}
}
|