2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * By using this file, you agree to the terms and conditions set
11 * forth in the LICENSE file which can be found at the top level of
12 * the sendmail distribution.
15 #pragma ident "%Z%%M% %I% %E% SMI"
18 SM_RCSID("@(#)$Id: fwalk.c,v 1.19 2001/03/02 03:22:18 ca Exp $")
25 ** SM_FWALK -- apply a function to all found-open file pointers
28 ** function -- a function vector to be applied
29 ** timeout -- time to complete actions (milliseconds)
32 ** The (binary) OR'd result of each function call
36 sm_fwalk(function
, timeout
)
37 int (*function
) __P((SM_FILE_T
*, int *));
40 register SM_FILE_T
*fp
;
42 register struct sm_glue
*g
;
46 for (g
= &smglue
; g
!= NULL
; g
= g
->gl_next
)
48 for (fp
= g
->gl_iobs
, n
= g
->gl_niobs
; --n
>= 0; fp
++)
52 if (*timeout
== SM_TIME_DEFAULT
)
53 fptimeout
= fp
->f_timeout
;
56 if (fptimeout
== SM_TIME_IMMEDIATE
)
57 continue; /* skip it */
58 ret
|= (*function
)(fp
, &fptimeout
);