Start development on 386BSD 0.0
[unix-history] / .ref-BSD-4_3_Net_2 / usr / src / contrib / isode / others / quipu / uips / pod / filt.h
CommitLineData
11492ebf
C
1/*
2 * $Header: /f/osi/others/quipu/uips/pod/RCS/filt.h,v 7.2 91/02/22 09:31:32 mrose Interim $
3 */
4
5
6#ifndef FILT
7#define FILT
8
9typedef struct stroid_list {
10 int fi_type;
11 char *stroid;
12 char *name;
13} filt_item;
14
15typedef struct filter_struct {
16 int flt_type;
17 union ftype {
18 filt_item item;
19 struct filter_struct *sub_filt;
20 } fu_cont;
21 struct filter_struct *next;
22} filt_struct;
23
24#endif