Lines Matching defs:bsd_db
81 struct bsd_db { struct
82 int totlen; /* length of this structure */
83 u_int hsize; /* size of the hash table */
84 u_char hshift; /* used in hash function */
85 u_char n_bits; /* current bits/code */
86 u_char maxbits;
87 u_char debug;
88 u_char unit;
89 u_short seqno; /* sequence number of next packet */
90 u_int hdrlen; /* header length to preallocate */
91 u_int mru;
92 u_int maxmaxcode; /* largest valid code */
93 u_int max_ent; /* largest code in use */
94 u_int in_count; /* uncompressed bytes, aged */
95 u_int bytes_out; /* compressed bytes, aged */
96 u_int ratio; /* recent compression ratio */
97 u_int checkpoint; /* when to next check the ratio */
98 u_int clear_count; /* times dictionary cleared */
99 u_int incomp_count; /* incompressible packets */
100 u_int incomp_bytes; /* incompressible bytes */
101 u_int uncomp_count; /* uncompressed packets */
102 u_int uncomp_bytes; /* uncompressed bytes */
103 u_int comp_count; /* compressed packets */
104 u_int comp_bytes; /* compressed bytes */
105 u_short *lens; /* array of lengths of codes */
106 struct bsd_dict {
123 } dict[1];